Solved : curl_init() function not working in Ubuntu Here solved the error Fatal error: Call to undefined function curl_init() You need to install CURL support for php. In Ubuntu you can install it via sudo apt-get install php5-curl If you're using apt-get then you won't need to edit any PHP configuration, but you will need to restart your Apache. sudo /etc/init.d/apache2 restart If you're still getting issues, then try and use phpinfo() to make sure that CURL is listed as installed. There is

How to get Real IP,ISP,Country,City and etc from Visitor using PHP Php Get Real visiter's IP and ISP and Country and City and Country code and and Region Name and Latitude Longitude and Timezone How to get Real IP,ISP,Country,City and etc from Visitor using PHP

PHP Adding One Day to a Date Here My code is how Add one day in date and Display in php script for example current date is 2009-09-03 and add one date result is 2009-10-01 PHP Adding One Day to a Date