Sunday, 22 June 2014

PHP Variables

—  As with algebra, PHP variables can be used to hold values (x=5) or expressions (z=x+y). —  A variable can have a short name (like x and y) or a more descriptive name (age,  car_name,  total, volume). —  Rules for PHP variables: —  A variable starts with the $ sign,...

Introduction to PHP

PHP (Hypertext Preprocessor): —  PHP is a server scripting language, and is a powerful tool for making dynamic and interactive Web pages quickly. —  PHP code are executed on the server, and the result is returned to the browser as plain HTML —  PHP files have extension ".php" PHP...

JavaScript Popup Boxes

JavaScript has three kind of popup boxes: —  Alert box —  Confirm box —  Prompt box. Alert Box: —  An alert box is often used if you want to make sure information comes through to the user. —  When an alert box pops up, the user will have to click "OK" to proceed. Syntax:-                                ...

Tuesday, 10 June 2014

HTML DIV Tag

The HTML <div> tag is used for defining a section of your document. With the div tag, you can group large sections of HTML elements together and format them with CSS. The difference between the div tag and the span tag is that the div tag is used with block-level elements whilst the span tag is...