PHP variable

$variable_name = Value;
Always Php Variables names are case-sensitive

<?php
$iamstring = "Hello World!";
$iam_number = 4;
$itsalsoNumber = 8;
?>