Rename wp content Folder Wordpress

Ever since WordPress version 2.6 you can actually move your wp-content directory to a different location. The wp-content directory will store all your theme files, plugin files and images. Why Move The wp-content Folder The best reason to move the wp-content is for security if you move this to an unexpected location any hackers looking to target this area won't...
Continue Reading

PHP Forgot Password Tutorial

This tutorial is about building a forgot password system(Password Resetting System) with PHP when password is encrypted with MD5() ,SHA1() or any other encryption algorithm . When you are storing...
Continue Reading

Smarter Filtering Width And Height of Images

Whenever you upload an image using the WordPress media library and add this image to your post, WordPress will automatically add the image Width and Height attribute in the image element. This is fine for most themes, but there are other times when you don't want WordPress to add these attributes. The benefit of not adding these attributes is that you can leave...
Continue Reading

PHP Script to Compress Folder

Sometimes we need to compress entire folder including sub folders and files.To compress entire folder using ZipArchive() class you need to scan all folders and files.After assigning all...
Continue Reading

Difference Between Include Once and Require Once in PHP

One of the most common questions I get asked by PHP beginners is, Why is there 4 ways to include a file on your page? There is include(), include_once(), require() and require_once(). What do these do? What's the difference between them? In this article we're going to look at all these different functions and will talk about an example of when you need to use each...
Continue Reading

Sign up form Code in PHP, jQuery and CSS3

CSS <link rel="stylesheet" type="text/css" href="demo.css" /> JQUERY <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> Javascript <script...
Continue Reading

User Registration And Login System Using PHP and Mysql

In this Blog I am going to explain you a complete PHP Registration, validation, Login and User Interface Script. This script is Complete in the sense that this will let you register and save those inputs to database table “user_signup”. Empty field validations, compare field validation, and username uniqueness script is implemented. Other validations can also...
Continue Reading