Originally posted by robzky
View Post
Code:
function pending($uid)
{
$res = mysql_fetch_array(mysql_query("SELECT COUNT(*) FROM [COLOR="#ff0000"][B]tableprefix_[/B][/COLOR]rpgame WHERE uid='".$uid."'"));
if($res[0]>0)
{
return true;
}
return false;
}
Comment