I\'m trying to to a simple page organized with various php includes inside tables.
My problem is: when I put a in
Try removing the:
<!---------------------- MENU ---------------------->
which is adding an extra (non) element to the document.
When I viewed your test site and downloaded the source, there are invisible characters inserted after the <td>
and before the contents of your included file. I copied into Notepad++ and had to change to ANSI encoding to even see it. I would turn on view all characters in whatever editor you are using and see if you can find the visible characters to remove.
Using a hex editor I've found that your files are encoded with UTF-8 with BOM. This Byte order mark character is causing the display issue. Googling found that W3C has an article covering this and how to remove the BOM character from your files.
Additional Info:
Tools used to debug: