Hi
iam trying to get all users with a photo album to appear in a drop down list.
here is the code
Iget the list of users but need to add the link belowPHP Code:$rime4 = mysql_query("SELECT * from users ")
or die(mysql_error());
while($row = mysql_fetch_array($rime4)) {
extract($row);
$username = $row["username"];
$userid = $row["userid"];
echo "<option value='$userid'> $username </option>";
how do i add this link to the username this is the link http://www.$sitePath/index.php?username=$username








Bookmarks