Without using forms and hidden variables, how to send
variables from a PHP script to another URL using POST
method?
Answers were Sorted based on User's Feedback
Answer / lakhan lal
you can do it using curl
example:
<?
$URL="www.mysite.com/test.php";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"https://$URL");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch,
CURLOPT_POSTFIELDS, "Data1=blah&Data2=blah");curl_exec
($ch);
curl_close ($ch);
?>
Is This Answer Correct ? | 5 Yes | 2 No |
Answer / suren
You can get the information from the following links.
http://www.php.net/manual/en/ref.mcrypt.php
http://www.phpuk.org/code.php
Is This Answer Correct ? | 1 Yes | 9 No |
What Is a Persistent Cookie?
The left association operator % is used in PHP for?
What is filter_var?
Is php object oriented?
What is .htaccessfile and use of this file
how to get substring of string without using substr() function in php ????
What's the difference between using mysql_ functions and pdo?
how we can retrive data in pdf along php mysql?
How can we check the value of a given variable is a number?
How can I reverse sort an array keeping the correlation between the index and value?
2 Answers Rushmore Consultancy,
what mode to use when creating dirs with mkdir?
How to take a substring from a given string in php?