I managed to fix it. An error on my part.
It was reading:
<form method="POST" name="tool" action="
<?
if ($tool_type == 'add')
{
echo "page_preview.php\">\n";
echo "<input type=hidden name=action
value=add>\n";
}
else
{
echo "db_editor.php\">\n";
echo "<input type=hidden name=action
value=delete>\n";
}
?>
and the source html was:
<form method="POST" name="tool" action=
"page_preview.php">
The problem arising because netscape was reading the newline after the 'action=' as a space 🙁 and ie managed to read it correctly.
Thanks for the response.
Is there any way of developing cross browser pages easily??
Regards,
Maz