I've seen a number of question here about overcoming Netscape problems, but so far no answer the the problem that I am having.
I try to call a second page from a PHP page and get an error.
The first page is:
<?php if ($Button_NewItem == "Next Page")
header ("Location: page2.php"); ?>
<head></head>
<body bgcolor="#FFFFFF" text="#000000">
<form name="Form1" method="post" action="">
<INPUT TYPE="SUBMIT" VALUE="Next Page" NAME="Button_NewItem">
</form>
</body>
Clicking the button calls the page again and redirects to page 2. It works fine in IE and Opera, but Netscape gives Not Found error.
Any clues?