Problems with passing form details in PHP using POST

blibiaFroro

New Member
This is a piece of code on home.php\[code\]<form action="./Login" method="post">Email Address: <br /><input type="text" name="username" tabindex="1" /><br />Password: <br /><input type="password" name="password" tabindex="2" /><br /><input type="hidden" name="home" value="http://stackoverflow.com/questions/3670219/yes" /><div class="options"><input type="submit" value="" name="LoginCheck" class="submit_n" /></div></form>\[/code\]On submitting \[code\]isset($_POST['LoginCheck'])\[/code\] on \[code\]login.php\[/code\] return false.I usually write the form part & processing part on the same file & then this seems to work correctly. However for this case i.e processing on other page this does not seem to work.This is probably a minor problem but what am I doing wrong?
 
Back
Top