Guest User

Untitled

a guest
Jan 22nd, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2. $q = array('words','go','here');
  3. $p = array('words','go','here');
  4. $b = array('words','go','here');
  5. $q_rand = array_rand($q);
  6. $p_rand = array_rand($p);
  7. $b_rand = array_rand($b);
  8. $name = $q[$q_rand] . " " . $p[$p_rand] . " " . $b[$b_rand];
  9. echo $name;
  10. ?>
Add Comment
Please, Sign In to add comment