My query looks like this:
$sql = "
SELECT u.*, s.*
FROM bands u
inner join statuses s on u.status_id = s.id
WHERE u.status_id = 1
ORDER BY u.band_name";
And I would like to output the ID from the bands table like so:
<?php while($row = $result->fetch_assoc()){ ?>
<tr>
<?php
echo '<td id="' . $row['id'] . '">This is the band</td>';
?>
</tr>
<?php }
but $row['id'] is not outputting anything, I’m guessing due to some sort of ambiguous column issue but I’m not sure how to properly query it. I tried $row['u.id'] as well but I don’t think that is the proper alias use because it didn’t output anything either.
You’ll want to create non conflicting aliases for the id columns;
Then you can pick them out as
$row['uid']and$row['sid']and still access your other columns as usual. The conflictingidcolumn is also still there, just avoid using it.