Hi, I'm creating a script and it works fine when I test it in Mozilla but when I use IE it does not appear.
Here's the code, if anyone can spot the reason why it's not working in IE please let me know. Thanks.
<html>
<head>
<title>test</test>
</head>
<body>
<?php>
require_once("connect.php");
?>
<?php
// Selects the fields that will be displayed
$query="SELECT Forum_Name,Forum_Email,Forum_Message from forum ORDER BY Forum_ID DESC";
$result=mysql_query($query,$connect);
// This formats the table
echo "<table width=425, border=1, align='center'>\n";
echo"<tr><td bgcolor='red'><h4 align='center'><font color='white'>Shoutbox</font></h3></td></tr>";
// This writes the data that has been selected
for($i=0;$i<mysql_num_rows($result);$i++){
list($Forum_Name,$Forum_Email,$Forum_Message)=mysql_fetch_row($result);
echo "<tr><td><font face='arial' color='red' size=2><b>$Forum_Name</b></font> <font face='tahoma' color='black' size=1>$Forum_Email</font> <font color='navy' size=2>$Forum_Message</font></td>";
}
mysql_close($connect);
// This closes the table
echo "</tr><tr><td bgcolor='red'> </td></tr>\n";
echo "</table>\n";
?>
</body>
</html>