How to change PHP version in cPanel

It is always important to use the stable, secure, and latest version of PHP. So, in this short tutorial, we are going to see how to change PHP version in cPanel for any kind of website. Besides security, it is important for the website’s performance speed as well. cPanel is a web based control panel software provided by your Web Hosting provider which provides a graphical interface to manage different tasks for managing your hosting or website. Read More

Create basic website layout with HTML CSS

This is going to be a short and basic tutorial meant especially for beginners. Almost every website consists of this basic layout which includes a Header, Sidebar, Content Area and footer. Read More

Get image width and height in PHP

In this quick tutorial, i am going to show you a simple way to get image width and height in PHP using a function getimagesize(). This is a very useful function in PHP, it provides function to get the width and height of an image. The getimagesize() function will determine the size of image file including flash file(swf). Read More

Creating Simple Tabs HTML, CSS & jQuery

In this Tutorial, we will be Creating Simple Tabs HTML, CSS & jQuery. Creating a tabbed component is actually a simple task, although it may not seem it at first and obviously depends on your level of skill. The difficulty also depends on how advanced you want your tabs to be, but for the sake of this tutorial, I am keeping it simple. Read More

Simple PHP User Login / SignUp Script Tutorial

In this tutorial we are going to create simple php user login / signup script tutorial using php and mysql as database. In this script, a form will be displayed with two fields, username and password. When user is submitting with valid username and password, then he can access authenticated (my-account) page. Otherwise user again has to fill in the form. Read More

Generate Random Password with PHP

When creating web apps, there is often a need to generate a random password for your new or existing users. There are a number of ways to do this, but in needing to do it recently I came up with this very simple function that will generate a random password (or any other random string) of whatever length you wish. It's particularly useful when generating passwords for users that they will then change in the future. Read More

Simple Contact form using Jquery Ajax & PHP

In this tutorial we will be creating a simple Ajax based Contact form using jQuery and PHP. This Tutorial is pretty basic, you should be able to pull it off if you are bit familiar with HTML, PHP and jQuery. Read More