You should always check after a query to make sure you have actual results, by:
$num_rows = mysql_num_rows ($result);
You might have an issue where you are getting more than one row returned, and as a result, the fetch_array will fail because you need to fetch_row instead.
Alex
|