PHP
1 min read

Lets enjoy power of PHP Function

function(): A set of specific program and source code which complete a specific task is function. Function separates the complexity of a large program and provides a modular approach. There are two type of function user define function and library function. Now focus on user defines function and try to understand.   Syntex of PHP […]

PHP
2 mins read

PHP File Uploading easy to learn tutorial with complete script

PHP is world’s no. 1 server side scripting language, it comes with plenty of features and one of the most famous one is file uploading which is extensively used world wide. Self Explanatory PHP File Uploading Example First Create a directory called  gallary/ . Save this file as gallery.php <!DOCTYPE html> <html lang=”en”> <head> <title>File […]

SEO
2 mins read

How to Conduct an On-Page SEO Site Audit

The first thing an SEO should do when given a new project is to conduct an SEO site audit.A SEO site audit is a critical first step that SEOs must undertake to understand the state of SEO.There are two basic options: A quick hit site audit where you go through the top level diagnosis with […]

HTML5
1 min read

HTML5 Audio Tag

HTML 5 natively support audio tag . Now your HTML 5 enable browser supports .ogg ,.mp3 format. So you can implement audio streaming on your HTML5 based website with a little bit of coding and its fairly simple. Browser Compatibility : IE 9, Firefox, Opera, Chrome, and Safari support the <audio> element.   HTML5 Audio […]

CSS
2 mins read

HTML FORM tutorial with CSS based Example

FORMS are used to pass data to a server and contain input elements like text, check box, radio, button, submit, reset, password. A form is incomplete with out input box . Data sent to server through forms using input elements  and executed on the server.Lets have a example of a form <form action=”name.php” method=”post”> <input […]

CSS
1 min read

Simple Link Hover Effect using CSS Tutorial

Are you bored with custom link colors and want to give a  new look to your links with new colors and effect then you come to right place, in this tutorial I am going to share how to make a link hover effect. Structure : you have to place this simple Code in you HTML […]

PHP
1 min read

How To find out Visitors IP ADDRESS using PHP

I f you a PHP programmer then you will find it very easy to track your visitors IP Address, if someone spaming on your site you can also block him. PHP is alway easy and powerful than other scripting language lets check the whole code .Codding: <!DOCTYPE html> <html lang=”en”> <head> <title>IP Address</title> <meta charset=”utf-8″ […]

CSS
1 min read

Creating Stunning Pure CSS Navigation Menu with Simple Coding

I am not going to teach you each step as you see the code , you will be able to understand it with out any problem. If you have any problem then please comment I will help you. Screenshot: Coding: <!DOCTYPE html> <html lang=”en”> <head> <title>Sanjay’ HTML5 World</title> <meta charset=”utf-8″ /> <style> ul { list-style-type:none; […]

PHP
1 min read

PHP Constant tutorial with practicle example

Constant: Constant refers to fixed value that does not change the value during the execution of program. Constant are defined using PHP’s define () function which accept two arguments. The $ prefixed is not required for constant.A simple Example : <?php //define constant define(‘PI’,3.14); $r=5; //use constant $area=PI*$r*$r; echo “Area of circle=”.$area; ?>   Result […]

HTML5
1 min read

HTML5 Video Tag

HTML 5 natively support Video tag , so no more lengthy coding  or dependence on .flv format for streaming Video. Now your HTML 5 enable browser supports .ogv, .ogg , .mp4  format. Browser Compatibility : IE 9, Firefox, Opera, Chrome, and Safari support the <video> element.Coding Structure <video width=”480″ height=”320″ controls=”controls”> <source src=”intro.mp4″ type=”video/mp4″ /> […]