- Code: Select all
<?php $j=chr(rand(97,122));for($i=0;$i<100;$i++){echo"<b>$i</b>:".($i%9?chr(rand(97,122)):$j).($i%10?"":"<br>");} ?>
See an example of what it does here... http://www.fiscalleti.com/mindreader/
Moderators: macek, egami, gesf
<?php $j=chr(rand(97,122));for($i=0;$i<100;$i++){echo"<b>$i</b>:".($i%9?chr(rand(97,122)):$j).($i%10?"":"<br>");} ?>


$parts = array('do','wa','po','ti','ka','ee','ay','ing','pl','a','e','y','ch'
,'sh','qu','nu','re','la','to','i','v','re','i','b','rr','oi','g');
$elements = count($parts);
for($numwords = 0; $numwords <10; $numwords++) {
$numbits = rand(1,15);
for($count = 0; $count < $numbits; $count++) {
echo $parts[rand(0,$elements-1)];
}
echo '<br />';
}




Users browsing this forum: Google [Bot] and 1 guest