Předmět Autor Datum
Třeba takhle: function get_rand_id($length) { if($length>0) { $rand_id=""; for($i=1; $i<=$length; $… poslední
host 18.11.2006 18:53
host

Třeba takhle:

function get_rand_id($length)
{
  if($length>0) 
  { 
  $rand_id="";
   for($i=1; $i<=$length; $i++)
   {
   mt_srand((double)microtime() * 1000000);
   $num = mt_rand(1,36);
   $rand_id .= assign_rand_value($num);
   }
  }
return $rand_id;
}

Zpět do poradny Nahoru