[ create a new paste ] login | about

bsquang

Name:
Email:
Site/Blog:
Location:
Default language:
Favorite languages:
About:

Saved pastes by bsquang:

PHP, pasted on Jan 23:
1
2
3
4
<?php

srand((double)microtime()*1000000);
$random_number = rand(0,1000000);
...
view (9 lines, 2 lines of output)
PHP, pasted on Aug 31:
1
2
3
4
5
<?php

function rand_string( $length ) {

$chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
...
view (12 lines, 1 line of output, 2 comments)