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
D
php/general-2007-07-03.tx php-general
+----------------------------------------------------------------------------+
| Dave Restall, Computer Nerd, Cyclist, Radio Amateur G4FCU, Bodger |
| Mob +44 (0) 7973 831245 Skype: dave.restall Radio: G4FCU |
| email : [EMAIL PROTECTED] Web : Not Ready Yet :-( |
+----------------------------------------------------------------------------+
| "People should have access to the data which you have about them. |
| There should |
| be a process for them to challenge any inaccuracies." |
| -- Arthur Miller |
+----------------------------------------------------------------------------+
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php