I'm using the mysql_fetch_array() function ..
then I am assigning the array to a variable... ex: while $data=mysql_fetch_arrey($query) ....etc.
after doing so ... I am printing it like so ...
$data[name] (for the name filed)
$data[price] (for the price filed) ...etc.
here is where my problem lays ..
when I am querying multiple tables .. or joining tables, I need to specify field names with the abriviation of the table it self... ex: p.name (product table, name field) or c.id (category ID) or p.id (product id ..) ... you get the picture...
this seems to not work with the array in php3 ...
please give me a segestion .. I'm stuck!!