I had never used CURL with PHP , but today I had to create a "multi-POST" script , initially I tried creating a middle man page that would make the POST to the final script but it didnt worked that good, then I found the following article ... simply awesome , and worked like a charm:
Article was taken from: http://devzone.zend.com/node/view/id/1081 Intended AudienceThis tutorial is intended for PHP programmers and web developers interested in using their webserver to transfer files or communicate with other servers. You will need some general knowledge of client-server protocol on the Internet, and a basic knowledge of PHP syntax.OverviewcURL and libcurl are libaries that allow a webserver to transfer files with a remote computer using a variety of Internet protocols. The libaries are highly configurable, allowing practically any type of client-server request to be peformed. By using these tools, a webserver can act as a client, creating and responding to requests using any technology built on HTTP, like XML-RPC, SOAP, or WebDAV.Learning ObjectivesIn this tutorial you will learn:
What are cURL and libcurl?cURL stands for "Client URLs", and was developed by Daniel Stenberg in 1998 as a command line tool. libcurl is a portable library that provides an easy interface to the cURL functionality. It is thread safe, IPv6 compatible, and supports persistent connections. The libcurl PHP binding was added by Sterling Hughes.Both cURL and libcurl can transfer files using a wide variety of protocols, including HTTP, HTTPS, FTP, FTPS, GOPHER, LDAP, DICT, TELNET and FILE. The libraries run on practically any *NIX operating system, as well as Windows, OS/2, BeOS, and many more. The cURL libraries are truly open source, with an MIT/X derivative license. This license is very liberal, allowing the use of cURL for whatever you want, commercial or not. You can use libcurl for free, and even include and distribute it with your own application, whether commercial or closed-source. cURL should not to be confused with the Curl Corporation, which is the commercial producer of the client side programming language, Curl. Installing cURLFrom PHP version 4.2.3 on, you need a cURL version of at least 7.9.0. From PHP version 4.3.0 on, you need a cURL version of at least 7.9.8.Windows: As with any PHP extension in Windows, you will need the PHP distribution that includes external extensions. Once PHP is installed, you will need to copy the files php4ts.dll, ssleay32.dll, php_curl.dll, msvcrt.dll from the 'DLLs' folder to your Windows PATH, i.e.: c:\windows\system for Windows 9x/Me c:\winnt\system32 for Windows NT/2000 c:\windows\system32 for Windows XP cURL can then be enabled by uncommenting the line 'extension=php_curl.dll' in the php.ini file. Alternatively you can load the module dynamically in your script using:
Your local mirror for downloading cURL can be found at http://curl.haxx.se. Precompiled binaries are also available for a wide range of operating systems. Because cURL relies on the openssl library for SSL connections, openssl must be installed first. If openssl is not installed, SSL support will be omitted from the cURL build. After installing cURL (./configure, make, make install), PHP must be recompiled to include cURL support (--with-curl).If cURL support is enabled, the phpinfo() function will display it in its output.A Simple cURL ExampleUsing cURL from the command line is extremely easy. The following example retrieves a web page and prints the page tostdout:
Of course, we can execute cURL on the command line using PHP. The following example does just that, and gets 3 pages at once:
Using libcurl with PHPWhile using cURL from within PHP is an option, using the libcurl PHP binding is much easier, especially for things like an HTTP POST operation.The process of using libcurl from within PHP is a matter of following these basic steps:
// FIND BOOKS ON PHP AND MYSQL ON AMAZON
To cURL or to libcurl?The decision as to whether to use cURL or libcurl depends on the situation. For instance, if I have a cron job running that e-mails me when a file changes on a remote server, or if my ISP doesn?t have libcurl support in their PHP install, using cURL makes more sense. However, if I have libcurl support in PHP and I am building a PHP application requiring cURL functionality, libcurl is the right choice.SummaryThe cURL libraries provide a nice interface for file transfers to and from a webserver. They have support for a wide variety of protocols (like HTTPS) giving them an edge over built-in PHP functions likefsockopen(). The libraries are thread-safe, IPv6 compatible, and will work with any technology that is built on top of HTTP. Whether you are building simple script to fetch a web page, or a secure payment gateway, leveraging the functions built into cURL can save a lot of time.Resource ListcURL on Sourceforge http://curl.sourceforge.net/cURL's man page - http://curl.sourceforge.net/docs/manpage.html PHP/cURL Manual - http://www.zend.com/manual/ref.curl.php About the AuthorWhatever spare time Jim has left after working full-time as a web developer, he spends developing websites like http://www.fatpigeon.com. Feel free to send any questions or comments to jthome@fcgov.com |