Catalog
-
Browse by
Category
All categories
Hats
Shirts
Pants
Gears
Packages
-
Legend
Limited
Limited Items
Owners of these discontinued items can re-sell them to other users at any price.
Limited U
Limited Unique Items
A limited supply originally sold by . Each unit is labeled with a serial number. Once sold out, owners can re-sell them to other users.
prepare(str_replace('allStar', 'count(*)', $sql));
$q->execute();
$numberOfItems = $q->fetchColumn();
$q = $con->prepare(str_replace('allStar', '*', $sql));
$q->execute();
if ($numberOfItems >= 1) {
while ($item = $q->fetch()) {
$qq = $con->prepare("SELECT * FROM users WHERE id = :id");
$qq->bindParam(':id', $item["creator"], PDO::PARAM_INT);
$qq->execute();
$creator = $qq->fetch();
if(!$creator) {
$creator = [
"id" => 0,
"username" => "[ unknown user ]"
];
}
$x = 40;
for ($i = 1; $i <= $x; $i++) {
?>