| 
<?
// This example goes with the serial.txt file.
 include("floMessages.php");
 $msg = unserialize(file_get_contents("serial.txt"));
 $adjective = $msg->get("adjective");
 $a = preg_match("/^[aeiouAEIOUhH]/", $adjective)?"an":"a";
 echo("Do you have $a $adjective ".$msg->get("noun")."?");
 ?>
 |