browse by tag: curl
sort by
How to use curl_multi() without blocking
in PHP added by goodphptutorials, on 15/6/2010 advanced tutorials curl
curl_multi is a great way to process multiple HTTP requests in parallel in PHP. curl_multi is particularly handy when working with large data sets (like fetching thousands of RSS feeds at one time). Unfortunately there is very little documentation on the best way to implement curl_multi. As a result, most of the examples around the web are either inefficient or fail entirely when asked to handle more than a few hundred requests.
comment save reportTowards RESTful PHP - 5 Basic Tips
in PHP added by goodphptutorials, on 11/12/2008 curl framework restful
As we entered a programmable web of applications with APIs the decision to ignore HTTP gave us problems we're still dealing with today. We have an Internet full of applications with different interfaces (GET /user/1/delete vs. POST /user/delete {id=1}). With REST we can say /user/1 is a resource and use the HTTP DELETE verb to delete it.
comment save reportHow To Use cURL (in PHP) For Authentication And SSL Communication
in PHP added by goodphptutorials, on 29/9/2008 advanced tutorials curl ssl
Using cURL (in PHP) to access https url is often not as simple as using the proper url. Using it for authentication is also not very clearly documented. This is a mini tutorial for both accessing https url's as well as for http authentication.
comment save reportFTP Upload via cURL
in PHP added by finalwebsites, on 15/10/2007 curl file handling ftp upload
Uploading files to a remote FTP server is very effective while using the cURL library. This short PHP tutorial will show the user how to upload a file to a password protected FTP server.
comment save reportGet Adsense Stats from PHP
in PHP added by goodphptutorials, on 17/8/2007 adsense curl networking webservice
Most of us webmasters use adsense for our websites. Havent you just like me wanted to get the stats via PHP directly into your own script? Here is how to get channel data with a script ready to use
comment save reportHow To Build A Link Scraper Using PHP
in PHP added by jlaing, on 12/8/2007 advanced tutorials curl dom scraping user-agent xpath
A basic tutorial on how to build a PHP script that scrapes links from any web page. The article goes over extracting content from a site using cURL, parsing the content with PHP's Dom functions, finding links using XPath queries, and storing the links in a MySQL database. Legal issues associated with scraping content is discussed at the end of the tutorial.
comment save reportDownload files with cURL
in PHP added by Nikolas, on 11/7/2007 curl download files http networking programming
A snippet that helps you download files from the web, with the use of the well known cURL library for php.
comment save reportFast PHP Tutorials - Part 1
in PHP added by goodphptutorials, on 2/3/2007 beginner beginner tutorials curl fast soap tutorial wsdl xml
These series of tutorials will start teaching PHP from scratch and will go to the extreme limit of PHP programming including its working with other tools like XML, cURL, AJAX, SOAP and WSDL etc.
comment save reportIntegrate the Authorize.net Payment Gateway with PHP
in PHP added by goodphptutorials, on 4/12/2006 authorize.net commerce curl e-commerce gateway openssl payment php5
We will explore every aspect of processing a transaction in detail and write code that will allow us to seamlessly integrate the Authorize.net payment gateway into our application.
comment save report