how to generate random number

This is a discussion on how to generate random number within the PHP Language forums, part of the PHP Programming Forums category; hi i want to generate a string which contains 5 characters and all 5 characters are randomly generated means it ...


Go Back   Usenet Forums > PHP Programming Forums > PHP Language

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 03-25-2005
vishal
 
Posts: n/a
Default how to generate random number

hi

i want to generate a string which contains 5 characters and all 5
characters are randomly generated means it is not fixed that which
string i will get after i execute function.

so tell me random number generation in php

thxs in advance.

Reply With Quote
  #2 (permalink)  
Old 03-25-2005
Chris Hope
 
Posts: n/a
Default Re: how to generate random number

vishal wrote:

> i want to generate a string which contains 5 characters and all 5
> characters are randomly generated means it is not fixed that which
> string i will get after i execute function.
>
> so tell me random number generation in php


Random number generating function manual page: http://www.php.net/rand

To get your 5 character string you'll want to do something along the
lines of:

$x = '';
for($i = 0; $i < 5; $i++) {
$x .= chr(rand(97, 122));
}

--
Chris Hope | www.electrictoolbox.com | www.linuxcdmall.com
Reply With Quote
  #3 (permalink)  
Old 03-25-2005
Alvaro G. Vicario
 
Posts: n/a
Default Re: how to generate random number

*** vishal escribió/wrote (25 Mar 2005 00:13:17 -0800):
> i want to generate a string which contains 5 characters and all 5
> characters are randomly generated means it is not fixed that which
> string i will get after i execute function.


Your function is mt_rand(). The manual page includes some user comments you
can just copy & paste. Don't forget to generate a 'random' seed with
mt_srand().

--
-+ Álvaro G. Vicario - Burgos, Spain
+- http://www.demogracia.com (la web de humor barnizada para la intemperie)
++ No envíes tu dudas a mi correo, publícalas en el grupo
-+ Do not send me your questions, post them to the group
--
Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT +1. The time now is 10:58 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0