I am just starting coding in PHP. I am experiencing a problem that I am not able to solve with any solution I found on the net.
I am trying to show a table with the thre
Just remove your <br> after the </td> in this part of code :
echo '<tr>';
echo '<td>' . $row_hour[0] . '</td>' ; //hour when the thread was created
echo '<td>' . $row_title[0] . '</td>' ; //title of the thread
echo '<td>' . $row_author[0] . '</td>' ; //author of the thread
echo '</tr>';
Because <br> is not available in <table> structure, and the browser show them before.