$array = array();
while ($row = mysql_fetch_row($result))
{
$array[] = $row;
}
solved Fetch records of a table as an array php mySQL [closed]
$array = array();
while ($row = mysql_fetch_row($result))
{
$array[] = $row;
}
solved Fetch records of a table as an array php mySQL [closed]