I am using :
mysql_query ("SELECT * FROM $table INNER JOIN PACKAGES ON LISTINGS.PACKAGE = PACKAGES.ID $string ORDER BY PACKAGES.RANK ASC, $_GET[sortby] LIMIT $start,$_SESSION[limit]");
while ($row = @mysql_fetch_array ($query2))
Just one problem, I want to print the ID of the LISTINGS table, but instead, when I use echo $row[ID], I get the ID of the PACKAGES table..,
How can I print the ID of the LISTINGS table?
Thanks!