PHP

  • Magento: Place Order Did Not Work in One Page Checkout after Upgrading the Version from 1.7 to 1.9

    Published on: January 26, 2017

    Author:


    In Magento, i found a problem after upgrading the version from 1.7 to 1.9, after add to cart a product...

  • How to Create PDF from HTML Using TCPDF

    Published on: December 17, 2016

    Author:


    A few days ago I was working on a project that required an option to generate a pdf file of...

  • How to Pass URL Parameters and Keep SEO Value When Redirect A Page to Another URL?

    Published on: November 18, 2016

    Author:


    Sometimes while working you may have a situation when you want to redirect a page with its parameters to a...

  • How To Find & Use Latitude,Longitude Coordinates Through Google Maps API and PHP cURL

    Published on: December 2, 2015

    Author:


    Assume you have a number of addresses and your aim is to get the latitude & longitude for any given...

  • Requested data using cURL

    Published on: March 20, 2015

    Author:


    cURL is a popular method for getting data from different servers and different protocols. Today i am going to show...

  • How to integrate Zapier with WordPress and MySQL

    Published on: March 11, 2015

    Author:


    Zapier is a a great app to connect with all the apps like gmail, facebook, twitter and many more. In...

  • Google map with marker for your contact page

    Published on: June 3, 2014

    Author:


    To get Google map you need latitude and longitude of your address. You can easily find latitude and longitude from...

  • How to find/get Client IP Address using PHP function

    Published on: June 3, 2014

    Author:


    You can get Client IP Address using PHP function function get_client_ip() { $ipaddress = ''; if (getenv('HTTP_CLIENT_IP')) $ipaddress = getenv('HTTP_CLIENT_IP');...