Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.

Real 2 Script Problems


ghost's Avatar
0 0

here is mah script this should work but it dosnt.. i thought the problem was with the url it isnt.. i tryed to open a file on this sever i know exists "http://www.hellboundhackers.org/profile/yang.html" it gives the same failer.. what is wrong with this script:

<?php

$day="00";
$hour="00";
$url="http://www.hellboundhackers.org/challenges/real2/backups";

for($i=0;$i<32;$i++)
{
    if($day<=9) {$day="0".$i; } else {$day=$i; };

     for($j=0;$j<25;$j++)
     {
           if ($hour<=09) { $hour="0".$j."00"; } else { $hour=$j."00";};
           $url="http://www.hellboundhackers.org/challenges/real2/backups/backup_2004-09-".$day."_".$hour.".sql";
           $url="http://www.hellboundhackers.org/profile/yang.html";
           $file=@fopen($url,"r");
           

           if (!$file) { echo "Opening File ".$url. " failed<br><hr>"; } else { echo "<b>SUCCESS AT ".$url; };
     }
}

?>     

ghost's Avatar
0 0

i was using tripod.lycos to host it.. any good hosting sites for php?


ghost's Avatar
0 0

If you use javascript, you can run it locally.

I don't know of any free hosting that allows php…but there is bound to be at least one. Tried google yet?


Uber0n's Avatar
Member
0 0

Sabrewulf wrote: I don't know of any free hosting that allows php…but there is bound to be at least one.

http://freehostia.com/ There you go B)


ghost's Avatar
0 0

Thanks UBERON