Originally posted by Elizabeth
I just wanted to make sure you guys were paying attention... yeah that's it. 😃
Yeah, I agree. We are ALL paying lots of attention, you know??? 😉
<?php
include 'theguys.php'; // our array of E-watchers, array $guysmail ...
$page = "http://phpbuilder.com/board/index.php";
while (1) {
$data = file_get_contents($page);
if (stristr("Elizabeth", $data)) { // The Queen has posted...
$msg="Elizabeth has posted at PHP Builder! Drop what you're doing and read it, NOW!!";
foreach ($guysmail as $g) {
$m=mail($g, "Elizabeth Sighting!", $msg);
}
}
sleep(60);
}
?>
😃