i have login.php with a form inside:
<form name="form1" method="post" action="http://address.com/tes.php">
<p>
<input name="login" type="text" id="$login" value="login">
<input name="passwd" type="password" id="passwd">
</p>
<p>
<input type="submit" name="Submit" value="Submit">
</p>
</form>
and another file tes.php
i'd like the tes.php to only echo the LOGIN...
but : echo $login; doesn't work :/
i know it's simple, but what's wrong over here ?
<form name="form1" method="post" action="http://address.com/tes.php">
<p>
<input name="login" type="text" id="$login" value="login">
<input name="passwd" type="password" id="passwd">
</p>
<p>
<input type="submit" name="Submit" value="Submit">
</p>
</form>
and another file tes.php
i'd like the tes.php to only echo the LOGIN...
but : echo $login; doesn't work :/
i know it's simple, but what's wrong over here ?
Kommentar