Hey, thanks. Just tried it but it dosnt seem to work. This is what i have:
Im passing the id variable onto the page like:
web_view.php?id=3 (or whatever clients that id is)
$useid = $_GET["id"];
$query2 = "SELECT * FROM web WHERE autoID = '$useid'"; $results2 = mysql_query($query2, $connection);
$web_client = mysql_result($results2, "client");
$web_when = mysql_result($results2, "when");
$web_mediums = mysql_result($results2, "mediums");
$web_url = mysql_result($results2, "url");
$web_info = mysql_result($results2, "info");
However for someone reason it assigns the value of whatever the id is set to for every place i call $web_client, $web_when, $web_mediums, $web_url, $web_info
also I took this out for the code above because I wasnt getting any parse errors with this but when I add the line:
$web_image = mysql_result($results2, "image");
I get a parse error. Is image reserved?, its exactly how i have the column in the table named.
Thanks!