I have a profile system set up on my site where users can sign up, fill in their username, password, and a short "about me" description. When viewing their profile, I can't seem to get the "about me" stuff to show up correctly. It keeps displaying ALL of the aboutme information from every user on the table instead of the current user's profile.
Here's what I have
$query = mysql_query("select aboutme from plus_signup");
while ($row = mysql_fetch_array($query)) {
echo $row['aboutme']. " ";
}
What am I doing wrong?