Return to Snippet

Revision: 56795
at April 15, 2012 20:16 by paul0078


Initial Code
<?php

while ($row = mysql_fetch_array($result)) {
		echo "<p>" . $row['guitarname'] . " made by " . $row['guitarcompany'] ."</p>";
	}
	
?>

Initial URL


Initial Description


Initial Title
Handling SELECT result sets using mysql_fetch_array

Initial Tags
mysql, php

Initial Language
PHP