First of all: its wise to not show your database password to the public.
You should edit that out =D.
But.. about your script. It seems fine, no PHP errors in it.
Are you sure it can succesfully connect to the database (as there is no code to catch the error when it can't)?
Try altering the lines
PHP Code:
mysql_connect("localhost", "jrobert7", "password");
mysql_select_db("jrobert7_testing");
To
PHP Code:
mysql_connect("localhost", "jrobert7", "password") or die("Could not connect: " . mysql_error());
mysql_select_db("jrobert7_testing") or die("Could select DB: " . mysql_error());
And tell us what output it gave.
Another error could be that the database is empty, and therefor the while loop never runs because mysql_fetch_array will return false as it can not find a row.
You can check the number of rows returned by your query with the following function
and output a message that there are no results when it equals 0:
PHP Code:
$num = mysql_num_rows($result);