
Desktop Programming
C Programming Language C++ Programming Java ProgrammingWeb Design
HTML HTML5 CSS CSS3 PhotoshopServer Scripting
PHPDatabase
MySQLClient Scripting
jQuery© w3schools.in All rights reserved
Content is copyrighted to Gautam Kumar
Content is copyrighted to Gautam Kumar
Online software training Lessons that really works, Available 24/7
Learn almost anything for free.
With over 500 Lessons on everything from software engineering and web development, This is a virtual school where you can learn almost anything for free. My aim is to provide quality education.
Wednesday, April 24, 2013
CSS3 Tutorial - Photo Gallery
In this tutorial I am going to show you how to build photo gallery only using CSS3 (without any JavaScript). photo will be show in lightbox with smooth zoom in and out. I have used some CSS3 properties like user-select, box-sizing, transition, box-shadow and transform.
First of all, I would like to suggest you to download the demo files and open for your better understanding.
Download...

Wednesday, April 17, 2013
YouTube Player API for Embed Just a Part of YouTube Video
Using this API you can embed a part of YouTube video . The API allows loadVideoById and cueVideoById functions which allow you to specify a start and end time of the embedded video.
In below video example, when you play this video, it will start from 2:30 and will stop automatically in 2:50
You can also specify only video start time without using this API, Click here .
var...

Sunday, April 07, 2013
HTML5 Simple Template Design Features and Techniques
This is perfect time to adopt HTML5 semantic markup tags in your website. W3C has conducted a study of over billion websites and found that the most of common div IDs and classes are header, footer, menu, content and nav.
New DOCTYPE
The most important deceleration element, this helps your browser to understand what kind of HTML version it is trying to parse.
HTML : 1 ...

Sunday, March 17, 2013
Use YouTube Video as your Web Page Background
You are probably using static image as background for your webpages but this will be a little more rich experience for you if you could consider placing moving images, like an animation or a self-playing video clip, in the background of your web pages.
The Bing.com homepage frequently uses video backgrounds, like those penguins jumping out of an ice hole one after another, and so can you...

Wednesday, March 20, 2013
Simple and Professional Lightbox with CSS and jQuery.
Rather than using a bloated plugin that has features you’ll never use, this tutorial shows you how to create a own lightbox for showing any type of data.
In this tutorial I have created two html pages index.html and data.html, data.html has original content which I want to show in lightbox.
Download Script Live Demo
Step 1: The Markup
In this example, I have added...
Wednesday, January 02, 2013
PHP Tutorial - File Download Script to download any file without showing original path.
In this tutorial am going to explain you how to create PHP file downloader to download any files from web server to local machine.
I have used this in most of my web application. When you want to download any file you need to send the file name to PHP function, and rest of the thing PHP function will handle.
Download Script Live Demo
...

Tuesday, November 06, 2012
PHP Tutorial - Professional Pagination
I received lot of requests from my readers that asked to me how to implement Pagination in, PHP and MySQL. I have developed a very simple PHP function and used my professional networking website.
The tutorial contains only one PHP file with style sheet.
Download Script Live Demo in Connectsin.com
Pagination CSS
Code: 1 2 3 4 5 6 7 8 ...

Saturday, November 03, 2012
MySQL Tutorial - Event Schedule
If you are running a web applications like shopping,emails and comunity portals, you have handle lots of unwanted data, for example spam emails and unused shopping cart data. Sure it will created problem in database overload and backups. So I am explaining MySQL event scheduler for deleting unwanted data rows from database.
Database
Create sample database cart table contains four columns...

Monday, October 22, 2012
Expand and Collapse Image using Jquery
How to do Expand and collapsed image with Jquery and CSS. This concept implemented by the Orkut.com while updating image scrap, the scrap shows image in collapsed style to reduce the webpage height. This is very simple script using mouseover, mouseout and css Jquery functions.
Download Script Live Demo ...

Thursday, September 20, 2012
Print webpage data using JavaScript
Simple script to Print webpage data using JavaScript.. Users might want to print a part of the web page. Multiple print buttons in a web page, which prints portion of the page. Want to print with images?
Download Script Live Demo
Print function in Javascript which can Print particular area of webpage.
Code: 1 2 3 4 ...

Monday, August 27, 2012
jQuery Tutorial - Select All CheckBox
Select All checkbox are used to select multiple records at a time.
If user select/deselect the select all checkbox, all the checkbox in table will get selected or deselected accordingly.
Suppose if user select all the checkbox one by one then the select all checkbox should be automatically gets selected, and if user click selectall first and then unchecks any of the checkbox, then the select...

Thursday, August 23, 2012
Photoshop Tutorial - Create Animated GIF Banner using Photoshop
In this tutorial I am explain you, how you can create animated GIF banner using Adobe Photoshop. Graphics Interchange Format (GIF) Gif Image file is Platform independent. Gif is an 8 bit format which means the maximum number of colours supported by the format is 256. Gif Support transparency. You typically use a gif for simple logos, icons,banners or symbols. Using a gif ...

Monday, August 13, 2012
PHP Tutorial - Dynamic Dependent Select Box using Jquery and Ajax
How you can create a dynamic dependent select box, using Jquery-Ajax, PHP and Mysql.
Whenever you change selection in Parent list box then it's refresh a child box list data.
In this tutorial I am explaining, how you can dynamically change state name according selected country, and city name according selected state. It's very simple jquery with PHP code, I hope you will like this...

Saturday, August 11, 2012
Simple HTML Placeholder using HTML events
In this tutorial I am explaining you, how to create a HTML placeholder in finest way, which supports all browsers.
We can use HTML events to create placeholder for any textarea or textbox.
HTML DOM (Document Object Model) events allow JavaScript to register different event handlers on elements in an HTML document, when the user performs an action.
As well as attributes, events can be easily...

Thursday, August 02, 2012
PHP Tutorial - Server Side Form Validation using Regular Expressions
After making a form Make Sure to check form validation as there is no guarantee that the input given by user is always correct. Processing incorrect input values can give unpredictable results to your application.
Download Script Live Demo
You can validate the form input using php in server side.
Some things you need to check : Empty values Numbers...

Friday, August 03, 2012
PHP Tutorial - XML- RSS
In This post I have explained how to create RSS feed for web projects with PHP.
RSS is stands for Really Simple Syndication.
RSS is used to distributes recently updated information from websites to many receiver, much like a broadcast system.
RSS delivering regularly changing web content.
When you see the RSS icon in some websites, that means RSS feed is available on that site.
Basic...

Tuesday, August 07, 2012
PHP Tutorial - Create Thumbnails
This tutorial will describe you, how to create thumbnail images using PHP. Since this requires the GD library, you required installation of PHP with at least GD 2.0.1 enabled.
Below I have mentioned a PHP script, that contains thumbnail creation functions.
The code below creates a function named createthumb, that will get four parameters. The first and the second is correspondingly the path...
Sunday, August 05, 2012
PHP Tutorial - PHP Captcha
I am explaining Captcha in this tutorials. I am using some of the features available in PHP for creating an image. This is very simple and basic tutorial and have I used custom fonts for generating captcha image. And we know that captcha code used to avoid spam/abuse or auto-submission.
Download Script
Live Demo
captcha_code_file.php
Code: 1 2 3 4 ...

Thursday, August 02, 2012
MySQL Tutorial - Introduction
PHP and MySQL are a good combination for creating an ecommerce solution for your website.
MySQL Databases MySQL is the most popular Open Source Relational SQL database management system. MySQL is one of the best RDBMS being used for developing web based software applications. MySQL database application should be installed on your web server. MySQL is very popular so you will have no...

Thursday, August 02, 2012
HTML Tutorial - Introduction, What is HTML
HTML is a Hypertext Markup Language; it's a Predominant set of Markup tags which used to create design of web pages. HTML is relatively easy to learn, because every tag is predefined so only we need to know the work of tags and its attributes. Web browsers (Chrome, Internet Explorer, Firefox, Safari) is software’s for reading HTML and to display webpage design as output.
We can write HTML in...

Thursday, August 02, 2012
C Tutorial - Introduction
C was developed in the early 1970s by Dennis Ritchie at Bell Laboratories in USA. C was originally first implemented on the DEC PDP-11 computer in 1972. C was originally designed for writing system software but today a variety of software programs are written in C. C can be used on many different types of computers but is mostly used with the UNIX operating system.
It is also...

Thursday, August 02, 2012
C++ Tutorial - Introduction
C++ is a multi-paradigm programming language that supports object oriented programming (OOP), created by BJarne Stroustrup in 1983 at Bell Labs, C++ is an extension (superset) of C programming and the programs written in C language can run in C++ compilers.
The development of C++ actually began four years before its release, in 1979. It did not start out with the name C++; its first name was C...

Thursday, August 02, 2012
CSS Tutorial - Introduction
What You Should Already Know
Before you continue you should have a basic understanding of the following: HTML
Click Here , If you want to study HTML first.
What is CSS?
CSS was developed in 1997 for Web designers, as a way for Web designers to define the presentable look and feel of their Web pages.
HTML is only Markup language, we can use some attributes and values in tags,...

Tutorials, references, and examples are constantly tested and reviewed to avoid errors, but if found any, kindly contact us at contact@w3schools.in