I'm starting a new php project and this time php make me sick; I've put a
<form method= "post" action= "login.php"> <input type= "text" name= "nickname_us"/> </form>and in login.php
echo " before the condition ";
echo "/nickname: ";
echo $_POST['nickname_us'];
if($_POST['nickname_us'] != NULL)
{
echo " /the variable contain something ";
}
and when I arrive on my login.php page wich will control if the nickname_us exists, the page display nothing(just echo messages before the condition).
I've tried to display some messages to check if the $_POST contain something but $_POST display nothing...
I've deleted all other conditions just to look at the $_POST and it's empty... I don't anderstand; it always work but now it doesn't work...
Have you got an idea?


Sign In
Create Account


Back to top










