Header-Ad

Linux & Web Development Geek - Tips & Tricks

PHP,Joomla,WordPress & Linux based server management, error resolutions and fixing problems.

Thursday, May 12, 2016

Best Linux Security Tools 2016

5:45 AM
Always trying for a more robust tool to assist you in your work?  If there's one web site UN agency is aware of what's happening within the field of security tools, it is ToolsWatch. The site covers new tools, and promotes existing...

Thursday, October 11, 2012

How to Check if a URL is UP?

3:18 PM
So in this small quick tutorial i am going to tell you a very short way to determine weather a website is up or not? We will be using the PHP's cURL library in order to determine so. So lets start: ​function urlUP($url){     //Validate the URL first!     if(filter_var($url,FILTER_VALIDATE_URL)){ $handle = curl_init(urldecode($url)); curl_setopt($handle,  CURLOPT_RETURNTRANSFER, TRUE); $response = curl_exec($handle); $httpCode = curl_getinfo($handle, CURLINFO_HTTP_CODE); if($httpCode >= 200 && $httpCode < 400){ return true; }else{ return false; } curl_close($handle); }  ...

Saturday, October 6, 2012

Best way to Avoid MySQL injection in PHP

11:38 PM
SQL Injection, a commonly method used by majority of hackers and which is the cause for about 70% of the hack's all over the cyber warfare. Mostly hacker uses this (mysql injection) vulnerability to exploit the website and gain...

How to Validate a URL in PHP? [Easy]

7:41 PM
Starting from PHP 5.2 we have bunch of built-in functions which makes it easier for programmers to perform small functions without writing up code for them,one of such function is filter_var(); , using filter_var().  We can...