We Recommend

Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.


Posted By

Corhol on 09/17/06


Tagged

css php zen


Versions (?)


Zen Garden Randomizer


Published in: PHP 


  1. <?php
  2. // Small PHP script that displays a random design of CSS Zen Garden
  3. $rand = mt_rand(1, 195);
  4. if ( strlen($rand) == 1 ) { $rand = "00" . $rand; }
  5. elseif ( strlen($rand) == 2 ) { $rand = "0" . $rand; }
  6. header("Location: http://www.csszengarden.com/?cssfile=/$rand/$rand.css");
  7. ?>

Report this snippet 

You need to login to post a comment.