Statement 1: In PHP, a variable name can start with a number. Statement 2: Variable names are not case-sensitive. code example
Example: php variables
<?php
/* In PHP, a variable starts with the $ sign,
followed by the name of the variable:
*/
$txt = "Hello world!";
$x = 5;
$y = 10.5;
?>