Example of simulating a post request using phpcurl _ PHP Tutorial

Source: Internet
Author: User
Example of simulating a post request using phpcurl. 1. local machine: $ uriwww. jbxue. comtest. php; replace it with the address parameter array of your server $ dataarray (nametantengpasswordpassword)

1. local machine:

$ Uri = "http://www.jbxue.com/test.php"; // address of your server here
// Parameter array
$ Data = array (
'Name' => 'tanteng'
// 'Password' => 'password'
);

$ Ch = curl_init ();
// Print_r ($ ch );
Curl_setopt ($ ch, CURLOPT_URL, $ uri );
Curl_setopt ($ ch, CURLOPT_POST, 1 );
Curl_setopt ($ ch, CURLOPT_HEADER, 0 );
Curl_setopt ($ ch, CURLOPT_RETURNTRANSFER, 1 );
Curl_setopt ($ ch, CURLOPT_POSTFIELDS, $ data );
$ Return = curl_exec ($ ch );
Curl_close ($ ch );

Print_r ($ return );

2. remote server:

If (isset ($ _ POST ['name']) {
If (! Empty ($ _ POST ['name']) {
Echo 'hello, ', $ _ POST ['name'].'! ';
}
}

Optional $ uri = "http://www.jbxue.com/test.php "; // replace this with the address of your server. // The parameter array $ data = array ('name' = 'tanteng' // 'password' = 'password ')...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.