I am having trouble, I have a query that JOINs a few mysql tables and on 2 of these it shares a fields name "auto_id" now I am having trouble with this code below, where $row['auto_id'] is returning 1 result but I need the other, there are 2 fields with the name auto_id and I need to know how to display the second one, any ideas?
<?PHP
while($row=mysql_fetch_assoc($result)){
echo $row['auto_id']
}
?>