suppose that makes sense. logic and i are far from comrades 😉
but it still doesn't answer why i'm not getting anything out of the query string. have modified the code:
<?php
//pulls user number from titlebar, sets to $user_id
$userid= $_GET["userid"];
//pull up all rows where user_id is the same as the value of userid
$result= mysql_query("SELECT * FROM user WHERE user_id='$userid'",$mysql_connect);
//for every row that is fetched
$row= mysql_fetch_array($result);
//prints the user's information fields
printf("<p class=\"headline\">AlliedGames User Information</p><em> <br /><b>User Name:</b></em><br />%s<br /><br /><em><b>User Status:</b></em><br />%s<br /><br /><em><b>User Email:</b></em><br />%s<br /><br /><em><b>User ICQ:</b></em><br />%s<br /><br /><em><b>User Website:</b></em><br /><a href=\"%s\">%s</a><br /><br /><em><b>User Location:</b></em><br />%s<br /><br /><em><b>User Comments:</b></em><br />%s\n",
$row[1], $row[4], $row[5], $row[6], $row[7], $row[7], $row[8], $row[9]);
?>
i know that the end of that looks nuts, but it's cuz i've only just set it up and gotten it working. the annoying part is that everything is working fine except for the actual get. i can't seem to pull any info out of the query string at all.
-pel