PHP cURL functions with example cURL is stand for client URL It is a library (libcurl) which allows you to connect and communicate to many different types of servers with many different types of protocols. libcurl supports http, https, ftp, gopher, telnet, dict, file, and ldap protocols. libcurl also supports HTTPS certificates, HTTP POST, HTTP… (16 comments)

Download PHP Library (Core)   Download Apache HTTP server http://httpd.apache.org/download.cgi Download PHP http://php.net/downloads.php Download MySql http://dev.mysql.com/downloads/ Download PhpMyAdmin http://www.phpmyadmin.net/home_page/downloads.php Download Wamp Server (apache,mysql,php package) http://www.wampserver.com/en/ Download Xampp Server (apache,mysql,php package) http://www.apachefriends.org/en/xampp.html Download PEAR Libraray (PHP Extension and Application Repository) http://pear.php.net/package/PEAR/download Download PHP Frameworks   Download CakePHP Framework (MVC based architecture) http://cakephp.org/downloads Download CodeIgniter (MVC based…

How to integrate Amazon Simple Pay Standard Buttons for Payment?   Amazon Simple Pay allows your customers to use payment information from their Amazon.com account as a payment method on your website.   You can use Amazon Simple Pay to enable payments, donations, subscriptions, and marketplace transactions. It provides easy-to-configure, cut and paste HTML code…

OOPS Concept: Introducing Classes in php   You all know that Classes are the most important part of OOP.   A class is simply a template or blueprint that contains the various attributes and functions of an object of the class. Class is mainly composed of three things :  name, attributes, and operations.We can also…