i think you are right about the fetch_row thing...
I just found something about that when looking up "Resource id=#2"
It is still now working... I have just been trying diffrent stuff.....
This is the latest thing I tried that did not work...
<?php
$db="products";
$link = mysql_connect("localhost") or die("Couldn't connect to MySQL");
mysql_select_db($db , $link) or die("Couldn't open $db: ".mysql_error());
$val = $_GET['id'];
$query = mysql_query("SELECT * FROM products WHERE id=$val");
while ($a_row=mysql_fetch_array($query))
print $query;
?>
Just trying to display a certain filed (details) to corespond to the id number passed in the url....
Thanks