Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
A variable is a container to store information like numbers, characters, strings, etc. In PHP variable is declared using the $ sign followed by the variable name. PHP is a loosely typed language so we don’t need to declare the data type of the variable. It automatically assigns the data type to a variable based on the assigned value.
<?php $lang = "This is PHP"; $number = 100; $pie = 3.14; echo "Language is:". $lang. "<br>"; echo "Number is: $number <br/>"; echo "Pie = $pie"; ?>
Language is:This is PHP Number is: 100 Pie = 3.14