PHP Variables

A variable is used to store any value that you like.

You can reuse variable in any block of code in your PHP script.

PHP variables must start with a dollar ($) sign.

PHP Variable Syntax

$variable_name = value;

Below is an example of how to use variables in PHP:

"; $x = 55; echo $x ?>

The above code will output the following on your web browser:

John Smith 55

As you can see above variables are not declared first before you can use it. PHP is a loosely type language and all you need is to declared the variable properly.

PHP variables must start with letters and underscore only. The same as other language, PHP variable must not contain spaces.

Comments

Submitted byAnonymous (not verified)on Tue, 11/08/2011 - 05:22

its a good site to learn and practice

Add new comment