fork download
  1. <?PHP
  2. $code= array_merge( range('A', 'Z'), range('0', '9'));
  3. $_SESSION['code'] ='';
  4. for ($i = 0; $i < 5; $i++)
  5. $_SESSION['code'] .= $code[array_rand($code)];
  6. ?>
  7.  
Success #stdin #stdout 0.03s 52432KB
stdin
Standard input is empty
stdout
Standard output is empty