Php Programming Code Examples
Php > Database Related Code Examples
Mysql fetch real array
Mysql fetch real array
mysql_fetch_real_array()
<?php
function mysql_fetch_real_array($query)
{
// declare the array
$return = array();
if ($query)
{
$fetch = mysql_query($query);
while ($row = mysql_fetch_array($fetch))
{
$return[] = $row;
}
mysql_free_result($fetch);
return $return;
}
}
?>