Hey, To add a little fun to DP I have a challenge for all of you html,css,php experts! The task is to create a matrix style page without using any images at all, I have started off with this example that uses php and css. http://danthorpe.co.uk/randomPattern.php The php Code used is: <? function random_gen($length) { srand((double)microtime()*1000000); $char_list .= "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; $char_list .= "1234567890"; $char_list .= "%$£&@#<>"; $char_list .= " "; for($l = 0; $l < $length; $l++) { $random .= substr($char_list,(rand()%(strlen($char_list))), 1); } return $random; } for($i=1; $i<=2000; $i++) { ?> <span style="<? if(rand(0,9) < 3){?>margin-right:<?=rand(0,2);?><?=rand(0,9)?>px;<? }?>opacity:0.<?=rand(0,9)?>;filter:alpha(opacity=<?=rand(0,9)?>0)"><?=random_gen(1)?></span> <? } ?> PHP: Incase you haven't seen the matrix then this is what your aiming for: Impress me guys!
I'll see what I can do with this tomorrow, sounds like a fun experience ^^ Thinking about using some Javascript for an added effect