cURL
Haxx ad
libcurl

Shopping cart software, Online file storage, Online photo storage, Hosted shopping cart, Contact management software, Email marketing software, Project management software, Issue tracking software, Online notepad, Web publishing software

curl's project page on SourceForge.net

Sponsors:
Haxx

cURL > libcurl > PHP > Examples

PHP/CURL Examples Collection

We try to collect examples on how to program the PHP/CURL interface here. If you have any source snippests you want to share with the rest of the world, please let us know!

ExampleDescriptionAuthor
blogpost Post a blog entry to blogger.com using their "Atom" XML-based API. Michael Phipps
callbacks Set callback functions to receive the HTTP response as it comes through. Keyvan Minoukadeh
cookiejar Login to on one page and then get another page passing all cookies from the first page along Mitchell
customrequest CURLOPT_CUSTOMREQUEST usage shown
ebay_login Mimics a browser and logs in to ebay Imran Khalid
ftpupload FTP upload to a remote site Daniel Stenberg
getbinarypageinvar Get the contents of a web page as a binary into a php variable.
getpageinvar Get the contents of a remote web page into a PHP variable
google-analytics-login This code posts all the correct post fields to Googles universal Account Services login and brings the user directly to the AdSense Overview page. Cookies are used in this example as well as setting the USER AGENT and REFERRER HTTP headers. AskApache.com
httpfileupload Shows how to submit and upload a file to a HTML upload form. Daniel Stenberg
linkchecker Check for a given link in a remote page Michael Phipps
multi Shows how to fetch several documents at once by using the multi interface Roman Rozanov
multipartpost Using a multipart/form-post file upload form on a web page. Pete James
put Perform a HTTP PUT to a remote site Julian Bond
resizejpg Download a remote image, resize it and show it to the user Michael Phipps
rss-adsense Follow your Adsense earnings with an RSS reader Ozh
simpleget Get a URL
simplepost Basic HTTP POST operation

The cookiejar.php Example

Login to on one page and then get another page passing all cookies from the first page along Written by Mitchell

<?php
/*
This script is an example of using curl in php to log into on one page and 
then get another page passing all cookies from the first page along with you.
If this script was a bit more advanced it might trick the server into 
thinking its netscape and even pass a fake referer, yo look like it surfed 
from a local page.
*/

$ch = curl_init();
curl_setopt($ch, CURLOPT_COOKIEJAR, "/tmp/cookieFileName");
curl_setopt($ch, CURLOPT_URL,"http://www.myterminal.com/checkpwd.asp");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "UserID=username&password=passwd");

ob_start();      // prevent any output
curl_exec ($ch); // execute the curl command
ob_end_clean();  // stop preventing output

curl_close ($ch);
unset($ch);

$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_COOKIEFILE, "/tmp/cookieFileName");
curl_setopt($ch, CURLOPT_URL,"http://www.myterminal.com/list.asp");

$buf2 = curl_exec ($ch);

curl_close ($ch);

echo "<PRE>".htmlentities($buf2);
?>

donate! web site info

File upload with ASP.NET