Forum Moderators: coopster
well here we go hope I can explain well what i want to ask.
I want to make a short stats about my members so that it show near there signature.
$c = mysql_query ("select * from user");
$d= mysql_fetch_array($c);
$name= $d["user"];
$gender= $d['gender'];
$city= $d["city"];
echo $name."<br>".$gender."<br>".$city;
How to make the script understand to show that result about each member?
any help would be appreciated
So for the email make you SELECT statement like this
Select * From {table} WHERE {email-field}='$user_email'.
That way you will select only 1 row from your database and you will show the appropriate values in your page
Good luck!