Skip to content

Instantly share code, notes, and snippets.

@dukelion
Created October 19, 2015 07:25
Show Gist options
  • Save dukelion/a728a1d4272e01534c7b to your computer and use it in GitHub Desktop.
Save dukelion/a728a1d4272e01534c7b to your computer and use it in GitHub Desktop.
$r = mysql_query("SELECT count(*) FROM user");
$d = mysql_fetch_row($r);
$rand = mt_rand(0,$d[0] - 1);
$r = mysql_query("SELECT username FROM user LIMIT $rand, 1");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment