AJAX stands for Asynchronous JavaScript and XML. This is a cross platform technology which speeds up response time. The AJAX server controls add script to the page which is executed and proc... Read more
All modern browsers support the XMLHttpRequest object (IE5 and IE6 use an ActiveXObject). The XMLHttpRequest object is used to exchange data with a server behind the scenes. This means that... Read more
PHP is a open source, interpreted and object-oriented scripting language i.e. executed at server side. It is used to develop web applications. PHP is a server side scripting language PHP is... Read more
Variables are used to hold data in memory. JavaScript variables are declared with the var keyword. var age; Multiple variables can be declared in a single step. var age, height, weigh... Read more
All web pages have a basic structure you should follow when creating an HTML file. Below is an example of what you should have in every web page you create. <html> * The opening HTML t... Read more
To add CSS in your HTML file. … <head> <link rel="stylesheet" type="text/css" href="mystyle.css"> <title>My Title</title> </head> … In the above example, whenev... Read more
Inorder to create a new website, you should follow these steps. Choose File --> New --> Web SiteThis brings up the New Web Site dialog box as show below, and contains a list of the tem... Read more
Prior to JavaScript and other client-side languages, Web browsers operated as if they were HTML dumb terminals, merely presenting Web pages generated on a server. For such pages, every user... Read more
The template system that ships with Magento may seem a little complex at first, but the price we pay in complexity affords us a great deal of flexibility and power, as we’ll discover. There... Read more