the project is www.printxpress.us/sign-in.php
the sign-in form has 2 submit buttons, one button giving the visitor the option of sign-in and redirect to the index page and the other button giving the option of sign-in and redirect to a change password page. Both buttons stem from the same script functions.
I recieve a parse error concerning the following section:
header ("Location: [url]http://[/url]" . $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) . "");
if (isset($_POST['submitSI']))
('index.php');
else (isset($_POST['submitSI2']))
('change-password.php');
exit();
what is it am i am not doing right?
probably something really obvious, 'eh?