Friday, December 28, 2012

New year Count Down in PHP

New year Count Down in PHP

Happy New Year 2013 simple Count Down script in php<?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ $day = 1; $month = 1; $year = 2013; //change for next year $end = mktime(0,0,0,$month,$day,$year); $today= mktime(date("G"),date("i"), date("s"),date("m"),date("d"),date("Y")); $days=($end-$today)/86400; if ($days>0) { $r1 = explode('.',$days); $hours=24*($days-$r1[0]); $r2 =...

Monday, December 24, 2012

Website page rank php

Website page rank php

Get the page rank of any website supported by Alexa with this simple function. <?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ function page_rank($page, $type = 'alexa'){ switch($type){ case 'alexa': $url = 'http://alexa.com/siteinfo/'; $handle = fopen($url.$page, 'r'); break; case 'google': $url = 'http://google.com/search?client=navclient-auto&ch=6-1484155081&features=Rank&q=info:'; $handle = fopen($url.'http://'.$page,...

Thursday, December 6, 2012

Preventing SQL Injections and Cross-Site Scripting

Preventing SQL Injections and Cross-Site Scripting

To secure your site from SQL Injections and Cross-Site Scripting you must validate every user input field. And don't forget about url adress, you must verify $_GET data, too. There is a simple way to do this, without checking every user input. You can do all with this function:<?php...

 

© 2014 4everTutorials. All rights resevered.

Back To Top