This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Monday, 17 September 2012

csv export and import script using php

Code bellow will be helpfull for you for importing and exporting csv files. Copy the code bellow and save it as "import_export_csv.php" then open it in your host e.g. 'localhost' and start importing, exporting csv files. <?php //don't forget to include your database connectivity.  include('db_connection.php');  if ($REQUEST_METHOD=="POST"...

using google map lookup address by postal code

           <?php     // First, we need to take their postcode and get the lat/lng pair:     $postcode = 'SL1 2PH';     // Sanitize their postcode:     $search_code = urlencode($postcode);     $url = 'http://maps.googleapis.com/maps/api/geocode/json?address='...