Hi,
I want to get name of the fields of a result query i.e. i have a query
$result=mysql_query("select * from reports order by report_id desc");
One thing is clear here i don't know how many fields present here above query is a example bcoz actul is a too much long query that's why i am using a simple query. i can get value easily like this
while($row=mysql_fetch_array($reslult))
{
$abc=$row[0];
}
but i need here the name of the field.
Any idea here?