About 565,000 results
Open links in new tab
  1. PHP, cURL, and HTTP POST example? - Stack Overflow

    Can anyone show me how to do a PHP cURL with an HTTP POST? I want to send data like this: username=user1, password=passuser1, gender=1 To www.example.com I expect the cURL to …

  2. What is cURL in PHP? - Stack Overflow

    Jun 17, 2010 · 271 cURL is a library that lets you make HTTP requests in PHP. Everything you need to know about it (and most other extensions) can be found in the PHP manual. In order …

  3. How to POST JSON Data With PHP cURL? - Stack Overflow

    How to POST JSON Data With PHP cURL? Asked 13 years, 5 months ago Modified 4 years, 4 months ago Viewed 715k times

  4. php curl -k or --insecure, -X - Stack Overflow

    With PHP & curl, I need to connect via a proxy to a SSL secured site, and, ignore certificate warnings. My curl command line looks like this: curl -k -u username:password -X GET …

  5. How to get response using cURL in PHP - Stack Overflow

    Jun 29, 2011 · I want to have a standalone PHP class where I want to have a function which calls an API through cURL and gets the response. Can someone help me in this? Thanks.

  6. php - Passing $_POST values with cURL - Stack Overflow

    Aug 26, 2008 · How do you pass $_POST values to a page using cURL?

  7. How can I use cURL to post form data in php? - Stack Overflow

    – teeyo Oct 17, 2017 at 15:24 Possible duplicate of How to convert curl file post from command line into PHP cURL

  8. http - Setting Curl's Timeout in PHP - Stack Overflow

    Apr 6, 2010 · In PHP, again, you must remove time limits or PHP it self (after 30 seconds by default) will kill the script along Curl's request. This alone should fix your issue.

  9. PHP CURL Using POST Raw JSON Data - Stack Overflow

    Jul 3, 2017 · I am working with PHP curl for post, for some reason I couldn't post the form successfully.

  10. php curl: I need a simple post request and retrival of page example

    Nov 11, 2014 · I would like to know how to send a post request in curl and get the response page.