Hi,
I'm using:
$sql_command = ("SELECT * FROM table");
$result = mysql_query($sql_command);
$rows = mysql_num_rows($result);
$cols = mysql_num_fields($result);
At this point in time I need the field with coordinates [$rows] and [$cols] i.e. the last row and last column.
Is there a simple way to get this field without having to traverse through the array?
Thanks