i have a query that returns a list of users , how do exclude a user from that list?
$result = mysql_query("SELECT t0.uid, t1.uid, t1.uname, t0.posts FROM ${prefix}users t1,${prefix}forum_users_status t0 WHERE t0.uid = t1.uid ORDER BY t0.posts DESC LIMIT 0, 5");
while(list($uid, $posts, $uname) = mysql_fetch_row($result))
{
$title4 = ereg_replace("_", " ", $uname);
$title5 = substr("$title4", 0,9);