Hi all,
I am having some issue with creating a HTML table with images from a MySQL Database.
Here is my code:
echo '<table>';
while ($row = mysql_fetch_assoc($result)) {
echo ' <tr>'.
' <td>'.'<img src =/"$row['LeftBanner']/" width=/"150/" height=/"125/">'.'</td>'.
' </tr>';
}
echo '</table>';
I am getting a T-STRING error (my quotes of course) and I cannot figure out why.
Thanks in advance,
Don