Hey all,
Say I have a query such as the following:
If I execute this using PHP and then use the mysql_fetch_array() function with the intention of displaying the data, how are the array keys determined?Code:SELECT orders.*, customers.* FROM orders, customers WHERE orders.id = customers.last_order
I have tried:
$row['orders.quantity'];
$row['quantity'];
and none of these seem to display anything. What should I be using?
Thanks in advance
-Sam






Bookmarks