Wednesday, May 22, 2013

Google translator code php

Google translator code php

Use Google translator code  in your  php script, Code send a HTTP request to the Google Translate website to translate a given string between an origin language and target language. Code show the translation results googletranslate.php <?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ class...

Saturday, May 18, 2013

Compute difference between two dates in php

Compute difference between two dates in php

This php script explain you , how you can calculates the difference of time between them in years, months, days. <?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ $date_1 = "2007-03-24"; $date_2 = "2013-06-01"; $diff = abs(strtotime($date_2) - strtotime($date_1)); $years = floor($diff / (365*60*60*24)); $months =...

Wednesday, May 15, 2013

get the geographic location of a IP address

get the geographic location of a IP address

This post explains you, how to get the geographic location of a IP address from http://freegeoip.net API geoIPLocation.php <?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ class geoIPLocation{ public $Ip = '0.0.0.0'; public $CountryCode = ''; public $CountryName = ''; public $RegionCode = ''; public $RegionName...

Monday, May 13, 2013

SEO Friendly URL function in PHP

SEO Friendly URL function in PHP

This post explains you, how to Convert simple url to SEO friendly URL using a simple PHP function. Pass your url to SEOURL funtion which is convert your url as a seo friendly url<?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ function SEOURL($_string) { return strtolower(str_replace(array('...

Wednesday, May 1, 2013

Redirect page after certain time PHP

Redirect page after certain time PHP

This is the simple php function to redirect page after certain time. <?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ /* * Redirects to specified $page */ function REDIRECT($page, $seconds=4) { // redirect specific $page within $seconds seconds header("Refresh: " . $seconds . "; URL=" ....
Secure login with MySQLi Extension php

Secure login with MySQLi Extension php

In this post,  we create new code secure login script with MySQLi Extension (MySQL Improved) in php. may be useful for you <?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ function LOGIN($username, $password) { // Connect to database $db = new mysqli('localhost', 'user', 'pass', 'demo'); // Hash...

 

© 2014 4everTutorials. All rights resevered.

Back To Top