Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ???

share|improve this question
1  
are you using ajax ? – mgraph Apr 17 '12 at 21:30
you can't do it without GET. – hjpotter92 Apr 17 '12 at 21:30
use $_REQUEST instead – Baba Apr 17 '12 at 22:42

3 Answers

$_REQUEST. It's basically a merge of $_POST, $_GET and $_COOKIE.

share|improve this answer

If I understand what you mean, you should be able to use $_REQUEST['username'] and $_REQUEST['password']

I'd recommend against it for security reasons if it's going anywhere near a database, but that will allow you to use POST or GET.

share|improve this answer

You can only pass GET parameters in the URL. To send POST data directly, you would want to use something like CURL to format your request properly to include variables as POST data.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.