I am having basic problem with my application in Internet Explorer. In all other major browsers Chrome, Safari, opera and Firefox, I have not got this layout problem in other major browsers but in internet explorer I do.
Open Application (Internet Explorer)
Problem
How come the last table column is displayed underneath and not next to the last table column? Below is the code:
$outputform.="
<form action='QandATable.php' method='post' id='sessionForm'>
<table>
<tr>
<th>9: Room and Building:</th>
<th>Building: {$buildingHTML}</th>
<th>Room: {$roomHTML}</th>
</tr>
</table>
</form>
";
echo $outputform;
IE don’t like HTML error’s, in you case you have a closed form tag inside a th tag:
I am talking about this tag:
Table will be fine after excess form tag is removed. I have tested it with your HTMl source.