Jump to content

Inventory Quantity Problem


nauir

Recommended Posts

How would I make an inventory item to not print out twice?

 

My code works like this:

Select items where ownerid=1(loggedinuser)

If Item Name is already printed out once, stop printing that item and on the first item printed place x4(number in inventory).

 

For example:

I have 5 water bottles in my inventory. I want it to say, Water Bottle (x5).

Link to comment
https://forums.phpfreaks.com/topic/151131-inventory-quantity-problem/
Share on other sites

I'm assuming this is a query...?

 

Try:

 

$query = "SELECT item, COUNT(ownerid) AS num FROM products GROUP BY item WHERE ownerid = 1";
$result = mysql_query($query) or die(mysql_error());
while($row = mysql_fetch_array($result)){
echo $row['item'] . "(x " . $row['num'] . ")
";
}

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.