Problem 1 - Your trying to include a directory. You need to specify file names.
PHP Code:
include("http://www.american-hoster.com/sourceBEgone/index.html");
Problem 2 - Your syntax is wrong.
PHP Code:
<? include("http://www.american-hoster.com/sourceBEgone/"); if ($active == no) print($message);
else [The rest of my code...]
?>
Should be
PHP Code:
<? include("http://www.american-hoster.com/sourceBEgone/index.html"); if ($active == "no"){ print($message); }else{ [The rest of my code...] }
PHP Code:
<? $active = no; $message = "This site has been banned from using Source Be Gone!"; ?>
Should be
PHP Code:
<? $active = "no"; $message = "This site has been banned from using Source Be Gone!"; ?>
Problem 3 - Try changing index.html to index.php, some times that randomly spews out parse errors for me.
As far as I can tell that is all the problems.
PS: Try your site in FireFox, theres a huge gap in it for some reason.
|