i'm trying to find a simple way of printing out the keys in an array
generated by mysql_fetch_array which returns a single row.
i.e.
while ($row=mysql_fetch_array($result) )
{
print out the $row keys and values
}
is this possible?
printing out array keys
|