Let’s say this is my form field code:
<form action="process.php" method="post">
<input type="text" size="25" name="username" />
<input type="text" size="25" name="password" />
</form>
These two input boxes allow users to enter information. At process.php, you can grab the variables in the same way:
$username = $_POST['username'];
$password = $_POST['password'];
now i want open page "process.php" directly with passing parameters
i use this link
localhost/process.php?username=ahmed&password=123456
not working ,i know if use $_GET will work well
$username = $_GET['username'];
$password = $_GET['password'];
but i want use $_POST
what i will to open this page with this way ???
$_REQUESTinstead – Baba Apr 17 '12 at 22:42