programmation
random_color - 1/p --- >>> Ø;
---
<?php # 12:17 11/06/2014 # http://www.php.net/manual/fr/function.rand.php # http://fr2.php.net/manual/fr/function.rand.php
# 4 admin at djs-music dot com ¶ 5 years ago # A nice function to generate a random string, using any character:
function get_random_color(){ for ($i = 0; $i<6; $i++) { @$c .= dechex(rand(0,15)); } return "#".$c; } $this_color = get_random_color(); //echo $this_color; ?>
<?php echo 'this_color <span style="color:'.$this_color.'">'.$this_color.'</span></br>';?> <?php /* #Sample output: $%29zon(4f */?>
<div id="Layer1" style="position:relative; left:34px; top:41px; width:100px; height:24px; z-index:1; background-color: <?php echo $this_color;?>"> <div align="justify" style="position:absolute; bottom:1px;"><span style="color: <?php echo $this_color;?>"><font size="2" face="Tamoro Script Personal Use Only, Tamoro, Arial, helvetica, verdana"><?php echo $this_color;?></font></span></div> </div> <br />
random_array - 0/i --- >>> Ø;
---
<?php # 12:17 11/06/2014 # $pattern = "abcdefghijklmnopqrstuvwxyz";// $dummytree_list = array("Nirvana", "The Smashing Pumpkins", "The Cure", "Jimi Hendrix", "The Beatles", "The Rolling Stones", "T.Rex", "Elliott Smith", "Blur", "My Bloody Valentine", "Sonic Youth", "Love", "Love is All", "Mùm", "That Dog", "Iggy Pop", "The Clash", "Depeche Mode", "XTC", "REM", "Pink Floyd", "Dandy Warhols", "Beach Boys", "David Bowie", "Sex Pistols", "Queenadreena", "Lou Reed", "Hole", "Led Zeppelin", "Black Sabbath", "Bis", "Prince", "Zappa & The Mothers", "U2", "Hüsker Dü", "New Order", "Atari Teenage Riot", "Pooka", "Neil Young", "Therapy?", "Urusei Yatsura", "Catherine", "Suicide", "The Who", "Jeff Buckley", "Kraftwerk", "Yeah Yeah Yeahs", "Robots in Disguise", "Simon & Garfunkel", "Art Brut", "The Doors", "The Gerogerigegege", "Sean Lennon", "Punish The Atom", "Babybird", "Nico", "Simple Minds", "Lightspeed Champion", "Jacques Dutronc", "Tété", "Alain Souchon", "Katerine", "Brigitte Fontaine", "Stupeflip", "Edith Nylon", "Mathieu Boogaerts", "Albin de la Simone", "Cypress hill", "93 \"suprême\" NTM", "Psykopat", "Angelo branduardi", "Malicorne", "7oi", "Afro jazz", "Aerosmith", "..And You Will Know Us By The Trail Of Death", "Dick annegarn", "Arno", "Avenue d", "Babes in toyland", "Baby Chaos", "Syd Barrett", "Beastie boys", "Beatles", "Berurier noir", "Björk", "Blonde redhead", "The Blood Brothers", "The Bloodhound gang", "The bloodsugars", "Boo-Ya Tribe", "Bracken", "Bratsch", "Jacques Brel", "Broadcast", "Buffalo Daughter", "Maria Callas", "Johnny Cash", "Chopin", "Clawfinger", "Css",
"Macka b", "Duff Mackagan", "Raghudnath Manet", "Manson", "McLusky", "Meat Puppets", "Rita Mitsouko", "Mobb deep", "Thurston Moore", "Wolfgang \'amadeus\' Mozart", "Neu", "Joanna Newsom", "Nietzsche", "No bra", "Noir desir", "The Noisettes", "Great Northern", "Nusrat fateh ali khan", "Nwa", "Opus akoben", "Carl Orff", "Paleface", "Nelson paraiso", "Peaches", "Moldy Peaches", "Pharcyde", "Brian Piltin", "Pixies", "Public enemy", "Queen latifah", "Red aunts", "Red rat", "Renaud papillon paravel", "Grey Revell", "Rhymes Busta", "Rhazel", "Run-D.M.C", "Rolling stones", "Roots manuva", "Veruca Salt", "Sapho", "Satie erik", "Segundo compay", "Rick Shapiro", "Siya", "Paul Simon", "Sioux mariee",
"Slash", "Sleater kinney", "Sopor aeternus", "Spinal Tap", "Stipplicon", "The Stooges", "Sunjata", "System of a down", "Rachid taha", "Tegan and sara", "Terry sonny", "Tété", "That dog", "These new puritans", "The Ting Tings", "The tiny", "To kill a petty bourgeoisie", "Tribe called quest", "Tricky", "Aphex twin", "U roy", "Velvet revolver", "The Velvet Underground", "Tom Waits", "Les Wampas", "Danyel Waro", "Washboard sam", "Woelv", "Wu tang", "X-syndicate", "Yacoub Gabriel" /**/); $rand_keys = array_rand($dummytree_list, 4);
?>
<div id="Layer1" style="position:relative; left:5px; top:150px; width:300px; height:100px; z-index:1;border:1px; border-color:black;"> <div align="justify" style="position:absolute; bottom:1px;"><span style="color: black"> <font size="5px" face="Arial, helvetica, verdana"><!-- Tamoro Script Personal Use Only, --> <strong><?php echo /**/'- "...'.$dummytree_list[$rand_keys[0]].' were babies when '. $dummytree_list[$rand_keys[1]].' were<br />with '.$dummytree_list[$rand_keys[2]]. ' at my CBGB\'s 35th birthday<br />'. $dummytree_list[$rand_keys[3]].' organised for me... "';?> </strong></font></span></div> </div> <br />
|