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 |
How to uploaded files to a table?
What are the advantages of stored procedures, triggers, indexes in php?
What are advantages of .htaccess?
What is escaping to php?
Does php support overloading?
Can I use node js with php?
What is move_uploaded_file in php?
Why we use get in php?
Explain the three different kinds of Arrays?
What is 'float' property in css?
Why many companies are switching their current business language to php? Where php basically used?
What are the functions to be used to get the image's properties (size, width and height)?