Please send questions to st10@humboldt.edu .

<?php

   // adapted from PHP manual

   $color = 'green';
   $fruit = 'apple';

   function fruit_in_lights($choice)
   {
       print "**********************************";
       print $choice;
       print "**********************************";
   }

?>