Revision: 1143
Updated Code
at September 17, 2006 08:32 by Corhol
Updated Code
<?php // Small PHP script that displays a random design of CSS Zen Garden $rand = mt_rand(1, 195); if ( strlen($rand) == 1 ) { $rand = "00" . $rand; } elseif ( strlen($rand) == 2 ) { $rand = "0" . $rand; } header("Location: http://www.csszengarden.com/?cssfile=/$rand/$rand.css"); ?>
Revision: 1142
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at September 17, 2006 08:32 by Corhol
Initial Code
// Small PHP script that displays a random design of CSS Zen Garden $rand = mt_rand(1, 195); if ( strlen($rand) == 1 ) { $rand = "00" . $rand; } elseif ( strlen($rand) == 2 ) { $rand = "0" . $rand; } header("Location: http://www.csszengarden.com/?cssfile=/$rand/$rand.css");
Initial URL
Initial Description
Initial Title
Zen Garden Randomizer
Initial Tags
css, php
Initial Language
PHP