Fabriciool

word random

May 6th, 2015
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?php
  2. $letras = array ("a","b","c","d","e","f","g","h","i","j","l","k","m","n","o","p","q","r","s","t","u","v","x","z","y","w");
  3.  
  4. $letrinhas = "";
  5. for($i=0;$i<8;$i++)
  6.   $letrinhas .= $letras[rand(0, count($letras)-1)];
  7.  
  8. ?>
Advertisement
Add Comment
Please, Sign In to add comment