This option will reset the home page of this site. Restoring any closed widgets or categories.

Reset

PHP


Page 5 of 1712345678910NextLast »

Simple PHP Captcha Image Verification or Validation

Hello guys, This is yet another tutorial for creating captcha  Image Verification or Validation using simple php script. And here goes the script The below script is captcha.php <?php session_start(); $strlength = rand(4,7); function createRandomString() { $chars = “abcdefghijkmnopqrstuvwxyz023456789″; srand((double)microtime()*1000000); $i... (Continue reading)

Include files in php using include, include_once, require or require_once

The Core PHP Constructs for Including Files There are four core constructs for including files into your PHP scripts. The main objective is for you to create code in separate files and then be able to use that code to... (Continue reading)

Tagged with:     

Get youtube video screenshot using simple php and javascript

Simple script to get the screenshot of a particular URL from youtube, <script type="text/javascript"> function getScreen( url, size ) { if(url === null){ return ""; } size = (size === null) ? "big" : size; var vid; var results; results... (Continue reading)

Tagged with:     

PHP Most Potentially Dangerous Feature, Secure It Today PHP Secrets

1. Register Globals When this directive is On, PHP will inject extra variables in the script such as HTML request variables, etc. PHP could inject these sort of variables in a script. The problem with this approach is that a... (Continue reading)

Tagged with:     

Speed up wordpress using .htaccess part 2

1 – Protect your WordPress blog from hotlinking Hotlinking is the use of an image from one site into a web page belonging to another site. Many bloggers are hotlinked, and have their bandwidth used on another websites. This very... (Continue reading)

Tagged with:         

Page 5 of 1712345678910NextLast »