Hi,
I have a php script that reads from a database and outputs text into tables that are set to a certain % width. When viewing through IE everything is fine, the text wraps around in the table. When I view in Netscape however the text is all on one line and in extending my table width ways off the screen. Any ideas what could be going wrong.
I haven't set any text wrap variable just:
&result = The text from the database
<table width = 50%>
<tr>
<td>
$result
</td>
</tr>
</table>
Any ideas how I can fix the problem?