Web Designing WAP development EWAVEZ Web Designs Software Development EWAVEZ Home About Us Contact Us PHP Tutorial
Multimedia
Web Development  
Web Hosting
Multimedia development
Software Development
Web Solutions
Our Clientele
     
 
 

PHP-Tutorial

 
 

Variables

Variables are containers which hold values. This is useful when you need to use the same piece of information several times, or on several different pages, because it enables you to easily pass information between functions and documents, which is a big part of having a dynamic web page.

A variable is a name that you choose beginning with a dollar ($) sign. You set the variable with the assignment operator, otherwise known as the equals (=) sign.
 

$name = "Kali";
$age = 21;


You can then call on the variable later in the script. Here is an example.

<?php
$name = "Kali";
$age = 21;

print("Hi there, my name is $name. I am $age years old.");

?>


The script above will then print out: Hi there, my name is Kali. I am 21 years old.

When naming variables, make sure that it uses only letters, numbers and the underscore (_) character, and no spaces. It also cannot begin with a letter, so $4bottles is not valid, but $four_bottles is. Remember that variable names are case sensitive.

So how would you use variables? A good example is with a HTML form that gathers user input, then uses that input on another page, like a guestbook does.

 
Previous Index Next
 
 
 

EWAVEZ Web Designs. Copyright © 2004 All Rights Reserved

| Home | About Us | Contact Us | Terms & Policies | Hosting | Multimedia | Web Designing | Software | Our Clients

 Search