Please, I need help to echo atable row and div tag within PHP code. The following is what I have unsuccessfully tried:
echo '<tr>'
'<td style="text-align:left">' . '<div class="describe">' . $row['im_description'] . '</div>' . '</td>'
'</tr>';
I don't want it to appear in this format:
<tr> <td style="text-align:left"><div class="describe"><?php echo $image['im_description']; ?></div></td> </tr>