View Single Post
  #10  
Old 10-04-2008, 02:57 PM
Ajof Ajof is offline
Member
 
Join Date: Jun 2008
Posts: 79
Credits: 5,870
Ajof
Send a message via MSN to Ajof
Default RE: Quick php tutorial

I win

PHP Code:
<?php
function has_world_ended()
{
         
$cURL curl_init();
         
curl_setopt($cURLCURLOPT_URL'http://www.hasthelhcdestroyedtheearth.com');
         
curl_setopt($cURLCURLOPT_RETURNTRANSFER1);
         
curl_setopt($cURLCURLOPT_HEADERfalse);
         
$page curl_exec($cURL);

         
$exists strstr($page'NO');

        if(!
exists)
        {
             return 
TRUE;
        }
        else
        {
             return 
FALSE;
        }
}

$secret "My darkest secret";

if(
has_world_ended() == TRUE)
{
       echo 
$secret;
}
else
{
       echo 
"Maybe next time eh chuck?";
}
?>
Reply With Quote