Now explain about how to add contacts to our gmail account it is very is process through PHP Curl in this process we need "access_token". the following snippet of code is used for add contacts to my gmail account.
Saturday, 20 September 2014
Add Contacts to Gamil using PHP Curl
Now explain about how to add contacts to our gmail account it is very is process through PHP Curl in this process we need "access_token". the following snippet of code is used for add contacts to my gmail account.
Friday, 19 September 2014
Use PHP To Detect An Ajax Request
Where a page is being accessed by AJAX it will post data using XML, PHP can then pick up on the HTTP request and see what the return is expecting. For this you just need to use the PHP server variable and grab the parameter HTTP_X_Requested_With.
For this you just need to use the PHP server variable and grab the parameter HTTP_X_Requested_With.
$_SERVER['HTTP_X_REQUESTED_WITH']
if(isset($_SERVER['HTTP_X_REQUESTED_WITH']) && !empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') { From Ajax }else{ Not Ajax }
Thursday, 18 September 2014
Get Latitude,Longitude Coordinates and Address from Postl code or Address Using Javascript and Display a Google Map
Hi there! I’m working at the moment on a project, where every user fills in their address when registering on the website they enter postalcode remaing fields automatically filled.
Subscribe to:
Posts (Atom)