Variables
Hold either numbers or strings. There is no need to declare the variable, nor is there a type involved.
<h1>Varriables</h1>
<?php
$name = "Table";
$width = 23;
$length = 17;
echo $name;
echo "<br>";
echo "Size: ";
echo $width * $length;
?>