How can I make a <a href link for data output by php and mysql?
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: 1,502 posts
Joined: Sep 2006
Something like this would work:
<?php
while($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.
They have: 105 posts
Joined: Mar 2006
Thanks!
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.