Thanks, Kudose for your help, I couldn't get your script to work as posted, but I slightly modified, and was able to get it to work, I have included the commented segment below for future reference.
//Okay, first we pull the entire table into $MQuery
$MQuery = "SELECT * FROM Table1";
$result = mysql_query($MQuery);
//mysql_num_rows($result) counts the number of rows returned by mysql_query()
$rows = mysql_num_rows($result);
//A simple for loop starts the var $inc at 1, and contiunes to increase it until it it becomes greater then the number of rows returned by mysql_query
for($inc=1; $inc <= $rows; $inc++){
//Each time the loop loops, this will keep putting the contents of each consecutive row into an array, and then displaying the 'Moo' colume
$data = mysql_fetch_array($result);
print("$data[Moo] <BR>");
}
Hope this helps some people, and thanks for the help Kudose