![]() |
|
|||||||
![]() |
|
|
Thread Tools | Display Modes |
|
#1
IP: 180.125.109.50
|
|||
|
|||
|
Code:
<?php print_r($_POST); ?> <form actiion="demo.php" method="post"> username: <input type="text" name="uname"><br> password: <input type="password" name="pass"><br> <input type="submit" value="login"> </form> Code:
<?php
//print_r($_POST);
foreach($_POST as $key=>$val){
echo $key."==>".$val."<br>";
}
?>
<form actiion="demo.php" method="post">
username: <input type="text" name="username"><br>
password: <input type="password" name="password"><br>
<input type="submit" value="login">
</form>
Last edited by Navarre : 2014-12-26 at 07:59 PM |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|
|