[ create a new paste ] login | about

Link: http://codepad.org/EtemHVfJ    [ raw code | output | fork ]

PHP, pasted on Mar 25:
1
2
3
4
5
6
7
8
9
10
<?php 

$string = "abcdefghijklmnopqrstuvwxyz0123456789";
for($i=0;$i<8;$i++){
    $pos = rand(0,36);
    $str .= $string{$pos};
}
echo $str; 

?>


Output:
1
uj773f08


Create a new paste based on this one


Comments: