Please help support the site by donating at the link below.https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8ZRU34U47BESW
No Freek. I like u.
<?$snow = $_GET['snow'];if($snow){ echo '<script type="text/javascript" src="snowstorm.js"></script>';}?>This should be good. You'd need an option to turn it off then.
<script type="text/css">#jssnowcontroller {position: absolute;bottom: 0;left: 0;background-color: #444;color: #fff;}</script><div id="jssnowcontroller"> <form action="index.php" method="GET"> Snow On <input type="radio" name="snow" value="true" /> Snow Off <input type="radio" name="snow" value="false" /> <input type="submit" value="Make it Snow!" /> </form></div><?$snow = $_GET['snow'];if(isset($snow)==false) {$snow = "on";};if($snow=="on"){ echo '<script type="text/javascript" src="https://www.acidmods.com/forum/snowstorm.js" />';};?>
<html><head><title>Untitled Document</title><?php$snow=$_GET['snow'];if(!isset($snow)){ $snow = "true";}if($snow == "true"){ echo '<script src="snowstorm.js"></script>';}?><style>body{ background:#000; color: #FFF;};</style></head><body><div id="f"> <form action="index.php" method="get"> Snow on: <input type="radio" name="snow" value="true"/><br /> Snow off: <input type="radio" name="snow" value="false"/><br /> <input type="submit" /> </form></div></body></html>