Hi,
I have two questions here, so would appreciate some help from anyone who is good at using PHP! 
I have the code below on the browse users page and I'm not sure of the syntax to use to get the userid to be a link so the user can click on it to go to that users profile:
$query = "SELECT * FROM plus_signup";
$result = mysql_query($query) or die(mysql_error());
while($row = mysql_fetch_array($result)){
echo "a href=. view_profile.php? =$row['userid']. ">$row->userid ". $row['name'];
echo "";





pr0gr4mm3r posted this at 13:11—28th March 2008.
He has: 470 posts
Joined: Sep 2006
Something like this would work:
<?phpwhile($row = mysql_fetch_array($result))
{
echo '<a href="view_profile.php?' . $row['userid'] . '">' . $row['name'] . '</a>';
}
?>
drew22299 posted this at 15:48—28th March 2008.
He has: 107 posts
Joined: Mar 2006
Thanks!