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
after the in this part of code :
echo '';
echo '' . $row_hour[0] . ' ' ; //hour when the thread was created
echo '' . $row_title[0] . ' ' ; //title of the thread
echo '' . $row_author[0] . ' ' ; //author of the thread
echo ' ';
Because
is not available in structure, and the browser show them before.