I have been lookig at this problem for a few hours and I have no idea what would cause it.
This is all part of a much bigger php page but it is an .asp file that is added to the page with an include statement, my understanding is that this shouldn't have any effect on the page compared to if it was all part of one php file.
The php at the top is just a testing method but I can't work out for the life of me why the code doesn't work when the page reloads after clicking on the submit button. This is not even entering the if statement because the echo never occurs, which implies there is nothing being posted.
CODE
<div class="LeftMenu">
<?php
if(isset($_POST['emailSignIn'])){
echo "email is = " . $_POST['emailSignIn'];
}
?>
<br />
Sign In
<font size="-6">
<!-- This is all the stuff down the menu on the lefthand side -->
<form name "signInForm" action="<?php echo $_SERVER['PHP_SELF']; ?>">
Email Address<br />
<input type="text" name="emailSignIn"/><br /><br />
Password<br />
<input type="password" name="passwordSignIn"/>
<br /><br />
<p align="center"><input type="submit" name="SignInSubmit" value=" Login "/></p>
</form>
</font>
<A href="Register.php"> Register Here </A>
</div>
Any help would be greatly appreciated.