Simple Defenition of php variable
Variables used to storing a values,text strings,numbers or arrays.
When a variable is declared, it can be used over and over again in your script.
All variables in PHP start with a $ sign symbol.
Example of declaring a variable in PHP
<?php
$var="test";
echo $var;
it returns :test
?>