TABLE_ROWS
13
1
8
5
2
3
5
2
7
6
3
4
3
32
my select query results a table like this .Here i want to assign each item to each variables .
a=13
b=1 etc...
i tried with forech but i did not get out put.Here is my code
$sql="SELECT TABLE_ROWS
FROM `information_schema`.`tables`
WHERE `table_schema` = 'labreport'";
$result= mysql_query($sql);
$row = mysql_fetch_row($result);
echo $row[0];
echo $row[1];