the error is kicking on the echo line of:
PHP Code:
$artistQuery = mysql_query('SELECT * FROM artists ORDER BY artistName ASC');
while ($artistRow = mysql_fetch_assoc($artistQuery)) {
echo '<p>'.$artistRow['artistName'].'</p>';
}
at first I thought well ok it's not returning any records, let's double check in phpmyadmin that it's a good query - ran the query in there and boom it displays all 30 or so records
then I thought well maybe I'm not asking for the correct array so then I did a print_r and sure enough it displays the listed array [0] through [30 something] with all the table data
then I went to bed
this morning I thought I would try again, but I'm still not having any luck and I've googled until my eyes crossed but I'm at an utter and complete loss as to what is causing this error
any help is greatly appreciated