i removed the white space, now i get a page not found in internet explorer....i don't know what is going on, because i am sure that the page exists....i feel i need to explain more, so you have a full picture
file1: terms.html
this page is a static html page that has a form with method=post action=Register.php, it also has in the form a text area with the terms and conditions, a check box, and a button...what i want to do is make sure the user checks the checkbox, so in Register.php i have the following code:
<?php
//i check to make sure the user clicked the agee to terms check box
//on the previous page
if(!isset($_POST['box1]))
{
header("location: NoTerms.html");
}
?>
as i said, i removed the white space, and now i get a 404 page not found...i am nost sure what is going on, becausei know that Register.php is there, and NoTerms.html is also there
thanks for your help
sam