I'm print the contents of a variable inside a table cell. Fairly simple. Works with IE, works with Mozilla but not Netscape (go figure...)
My code looks like this:
<TR>
<TD WIDTH=30%>
COUNTRY:
</TD>
<TD WIDTH=70%>
<?php print("$row[6]"); ?>
</TD>
</TR>
Pretty simple eh...
Now I've even tried doing the following in desperation:
<?php
print("<TR>\n");
print("<TD WIDTH=30%>\n");
print("PHONE NUMBER:\n");
print("</TD>\n");
print("<TD WIDTH=70%>\n");
print("$row[8]\n");
print("</TD>\n");
print("</TR>\n");
?>
Of course.. that doesn't work either....
Does anyone have any suggestions???