Hi, there are two in this one :- function Cat($Danger = "") { static int $Lives = 9; if (preg_match("/^curiosity$/i", $Danger)) die("Cat Killed"); $Threats = array("dog", "flu", "fall", "drowning"); if (in_array(strtolower($Danger), $Threats)) $Lives --; if ($Lives == 0) die("No More Chances"); } // Cat TTFN
curiosity killed the cat. cat has nine lives. tedd -- ------- http://sperling.com http://ancientstones.com http://earthstones.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php