Interested in learning web development, new language or just want to keep yourself updated with what's happening in information technologies? This site brings you the vast collection of screencast / video from net that can help you learn new technology, keep you informed of what's new, provide how to video tutorials and help you advance in information technology field. Not to mention seeing is better then reading or listening.

Using Eclipse for Java Programming

The Eclipse IDE can be a little daunting to the uninitiated. These ShowMeDos demonstrate some of the features you need to start using Eclipse for progr...

Using Cookies in PHP

Ever wonder how websites are able to remember who you are? They remember your country, your language, and many other details? This is often-times the product of small text-files being stored on your computer, which contain information about you. Don’t worry, the information isn’t derived from sec...

PHP Pagination

You wanted it, so here it is - Pagination with PHP and MySQL! Pagination, as described in the video, is the process of breaking a bunch of results, from a MySQL Query, up into specific pages, which themselves list a set number of items each. This process can be viewed on almost any reputable site tha...

PHP and Dreamweaver MX Video Tutorials

Learn how to set up site definitions for PHP within Dreamweaver, how to create a MySQL database and connect to it through Dreamweaver, and how to perform basic database tasks through PHP, such as inserting, deleting, updating data. Get all your PHP basics through these video tutorials from Mark Fletc...

Php Includes

Without understanding much about the details of PHP, you can save yourself a great deal of time with the use of the PHP include function. The include function takes a file name and simply inserts that file's contents into the script that calls used the include function

Basic PHP

Here we would like to show the very basics of PHP in a short, simple tutorial. This text only deals with dynamic web page creation with PHP, though PHP is not only capable of creating web pages

Installing PHP on your computer

Installing PHP on your computer

PHP Arrays

An array in PHP is actually an ordered map. A map is a type that maps values to keys. This type is optimized in several ways, so you can use it as a real array, or a list (vector), hashtable (which is an implementation of a map), dictionary, collection, stack, queue and probably more. Because you can...

Using the ASP.NET AJAX UpdatePanel, Triggers and PageRequestManager

Microsoft's ASP.NET AJAX technology provides a quick and simple way to add AJAX capabilities into new or existing Web pages. In this video tutorial you'll see how to use the UpdatePanel, refresh it using triggers and detect when it has finished updating using the PageRequestManager along with JavaS...

Layouts and content_for

If you want to change something in the layout on a per-template basis, content_for is your answer! This allows templates to specify view code that can be placed anywhere in a layout.