mrck Posted August 24, 2013 Posted August 24, 2013 Am trying to limit the amount of items a user can put on the market at one time I want to limit it at 10 items for each user Quote
Seker Posted August 24, 2013 Posted August 24, 2013 Am trying to limit the amount of items a user can put on the market at one time I want to limit it at 10 items for each user Congratulations! Quote
Dominion Posted August 24, 2013 Posted August 24, 2013 Congratulations! [sarcasm] That was a wonderful, and clearly productive post. Thank you. [/sarcasm] Check the items posted with the "itemseller" (?) equal to the ID currently posting before you actually post it in imadd.php. Quote
mrck Posted August 24, 2013 Author Posted August 24, 2013 How do I do that I don't know very much about this sort of thing Quote
Script47 Posted August 24, 2013 Posted August 24, 2013 Anyone correct me if I'm wrong but try use limit() Limit () Quote
SRB Posted August 24, 2013 Posted August 24, 2013 Anyone correct me if I'm wrong but try use limit() Limit () That would depend if he has just asked to only list 10 (or another number) of items from the database.... he didn't. To limit a player to only have 10 listings, place this is the file where it needs to be (I'll let you do some work yourself!) $sql = "SELECT `imID` FROM `itemmarket` WHERE `imADDER` = '{$ir['userid']}';"; $qry = mysql_query($sql); if (mysql_num_rows($qry) >= 10) { echo 'You can only have 10 listings on the item market at once.'; $h->endpage(); exit; } Quote
Script47 Posted August 25, 2013 Posted August 25, 2013 That would depend if he has just asked to only list 10 (or another number) of items from the database.... he didn't. To limit a player to only have 10 listings, place this is the file where it needs to be (I'll let you do some work yourself!) $sql = "SELECT `imID` FROM `itemmarket` WHERE `imADDER` = '{$ir['userid']}';"; $qry = mysql_query($sql); if (mysql_num_rows($qry) >= 10) { echo 'You can only have 10 listings on the item market at once.'; $h->endpage(); exit; } Ah okay, thanks for the information mate. :) Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.