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.