Language Basics Php

   $a="Hello there!";
   echo $a
   unset($a);
   echo $a; // Error: there is no variable $a
?>