Monday, December 30, 2013

Common security functions in PHP

Common security functions in PHP

<?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ /** * IsEmpty * * @param mixed $value * @return boolean */ function IsEmpty($value) { if(strlen(trim(preg_replace('/\xc2\xa0/',' ',$value))) == 0) { return true; }else { return false; } } ?> <?php /* Online PHP Examples with Source Code...
Social Media URLs and  PHP and JQuery

Social Media URLs and PHP and JQuery

In this post we are learn check popularity of URL across social network like Facebook, Twitter, Reddit, Google plus, StumbleUpon, LinkedIn and Pinterest. Popularity means URL  how many times shared ,liked ,commented and pinned by the users across the social networks. Note:  Use CURL function to grab this...

 

© 2014 4everTutorials. All rights resevered.

Back To Top