When we say “variables”, what instantly come to your mind?
Anything whose value keeps changing.
Variable in PHP are declared using “$”. I would elaborate it with example
$var_name = "value";
?>
The above syntax is explained as “$var_name” is the name of the variable and “value” will be the value which we wish to assign to this variable.
This would be better understood with following example:
$my_name = "www.phpblog.in";
echo $my_name;
?>
As you can see that we can assign any string to the variable and for displaying the value we can use the “echo” command
No comments:
Post a Comment