PHP: mysql_fetch_row - Manual - PHP: Hypertext Preprocessor
to print an array, simply use print_r(array name) like this: $myrow = mysql_fetch_row($result); echo ""; print_r($myrow); echo ""; this will output the array in a readable form, with the index, too. Don't forget the 'pre' tags or the output will be on a s...