my website has an mysql driven layout that feeds into css and creates the tables in one script.
This then calls the content - which is also all called from mysql trhough php.
Everytime the content prints a table within the css it mucks up the rest of the layout script - even if its closed properly (i tried it with a simple table:
CODE
<table>
<tr>
<td>blah</td>
</tr>
</table>
i.e. if there are 3 tables, a left nav bar, a middle bit with the content, and a right nav bar - and then a footer at the bottom below all 3... then if the content prints a table the following happens.
left nav bar stays the same.
middle content prints ok
right nav bar loses all borders and loses height, but spans the same width just above the footer.
- Im just posting to check if the thought behind my script is faesible, and if anyone knows a likely cause of the error before i route through my script
If you want to see what i mean then:
www.jesus-freaks.co.uk has no tables in the content.
but click 'log in' and you'll see what i mean when the log in form appears!

