Mega Code Archive

 
Categories / Php / MySQL Database
 

An Example of Using the Old MySQL Extension

<?php     mysql_connect("localhost", "username", "password");     mysql_select_db("mydatabase");     $result = mysql_query("SELECT * FROM mytable");     while($row = mysql_fetch_array($result)) {         foreach($row as $key=>$value) {             echo "$key = $value<BR/>\n";         }     }     mysql_free_result($result);     mysql_close();   ?>