showing off the code I just made and ask for suggestions
This is the code that randomly select an picture file(you define) and show it!... can be used on forums!
any one have any feature requests? because I think I got nothing need to upgrade
This is the code that randomly select an picture file(you define) and show it!... can be used on forums!
any one have any feature requests? because I think I got nothing need to upgrade
| Code: |
| <?php
$url[] = "a.jpg"; $url[] = "b.gif"; $url[] = "c.png"; $rand = array_rand ($url); $file = $url[$rand]; $path = pathinfo ($file); switch ($path['extension']) { case "jpg"; header ( "Content-Type: image/jpeg" ); break; case "gif"; header ( "Content-Type: image/gif" ); break; case "png"; header ( "Content-Type: image/png" ); break; } readfile ($file); ?> |
