on 7/24/03 8:13 PM, Beauford.2005 at [EMAIL PROTECTED] wrote: > > <FORM onSubmit="return checkrequired(this)" ACTION="season-write.php" > action="post" name="testing"> >
someone else already raised this issue and it doesn't look like you caught it: you have two actions in your form (the second should probably read method="post"), e.g., <form name="testing" method="post" action="season-write.php" onSubmit="return checkrequired(this);"> is your form even submitting to season-write.php? the other potential issue is that you mentioned your redirect function is within an external include file. since you moved the code from one server to another, make sure that the include file is in the correct path since the paths may be different on the new server. you could test by doing some debugging such as require("/path/to/include_file") or die("could not find include file"); brian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php