Hi there...
bloody beginner here, humor me....I managed to connect to mysql and whatnot...wrote my first little test...it works...BUT it returns only the first row of mysql table..
help please? this is the code I am using:
$result = mysql_query("SELECT * FROM cruise");
printf("Ship Name: %s<br>\n", mysql_result($result,0,"ship"));
printf("Cruise Line: %s<br>\n", mysql_result($result,0,"line"));
printf("Itinerary: %s<br>\n", mysql_result($result,0,"destination"));
printf("Advantage Rate: %s<br>\n", mysql_result($result,0,"adv"));
?>