PHP Lesson #2 - Variables

<?php
$variable = the; //the is assigned to $variable so it can be used at any time with $variable
echo '$variable'; //this echos what is saved inside the variable
?>
