Help me!!
I have a web site where is form where user can search snowboards at my database. . At the result page netscape return an empty page but explorer shows all results. My result page look like this (HELP ME DO BETTER RESULT PAGE TOO... IS SO .... UGLY!)
(it works well with internet explorer)
...
...
...
if ($row = mysql_fetch_array($result)) {
?>
<table>
<?
do {
?>
<tr>
<td width="20" bgcolor="#999999"><?php print $row["Merkki"] ?></b><br></td>
<td width="50" bgcolor="#CCCCCC"><?php print $row["Malli"] ?><br></td>
<td width="20" bgcolor="#999999"><?php print $row["Pituus"] ?></td>
<td width="50" bgcolor="#CCCCCC"><?php print $row["Kayttotarkoitus"] ?></td>
<td width="120" bgcolor="#999999"><?php print $row["Rakenne"] ?></td>
<td width="120" bgcolor="#CCCCCC"><?php print $row["Muoto"] ?></td>
<td width="45" bgcolor="#999999"><?php print $row["Leveys_nose"] ?></td>
<td width="45" bgcolor="#CCCCCC"><?php print $row["Leveys_keski"] ?></td>
<td width="45" bgcolor="#999999"><?php print $row["Leveys_tail"] ?></td>
<td width="20" bgcolor="#999999"><?php print $row["Paino_min"] ?></td>
<td width="20" bgcolor="#999999"><?php print $row["Paino_max"] ?></td>
<td width="30" bgcolor="#CCCCCC"><?php print $row["Hinta"] ?></td>
</tr>
<?
print ("");
} while($row = mysql_fetch_array($result));
} else {print "Ei hakua vastaavia lautoja. Muista pistää jokin väli PITUUS valintaan. 0-200 antaa kaikki mahdolliset laudat.<br>Muistithan antaa myös painosi. Ilman sitä haku ei toimi.<br><br> -Arto Hirsimäki-!";}
?>