Re: [PHP] Sequential Random Character Generator

2004-02-27 Thread Burhan Khalid
[EMAIL PROTECTED] wrote: I'm trying to create a PHP sequential random character generator that will output to a file database of some sort. The randomization needs to be using both capital letters and numbers. I need to output like 2 million records. Can someone point me in the right direction on

Re: [PHP] Sequential Random Character Generator

2004-02-25 Thread Aidan Lister
Here's a function I made for random string generation: http://www.ircphp.com/users/imho/?file=function.randstr.php randstr(len, seeds); so, echo randstr(10, "abc123"); would result in a 10 letter string made up of a,b,c,1,2,3 Hoep this helps. "Miles Thompson" <[EMAIL PROTECTED]> wrote in mess

RE: [PHP] Sequential Random Character Generator

2004-02-25 Thread Adam Bregenzer
On Wed, 2004-02-25 at 12:56, [EMAIL PROTECTED] wrote: > The first column being a key, which the printer requested, the second > being the random tag, and the third being what prize package they get, > or don't get. Verifying you have unique records as well as generating the prize information are p

RE: [PHP] Sequential Random Character Generator

2004-02-25 Thread list
First I know that sequential and random cannot co-exist. Let me explain what I'm attempting to use this for. I'm printing tags that will be used in the same way you win Pepsi stuff online. You will get a randomly generated code on the tag to check to see if you won at a website. The data needs

RE: [PHP] Sequential Random Character Generator

2004-02-25 Thread Chris W. Parker
[EMAIL PROTECTED] on Wednesday, February 25, 2004 8:26 AM said: > I'm trying to create a PHP sequential random character generator that > will output to a file database of some sort. and just to be a hair splitter, you can't be both sequential AND random at the same

Re: [PHP] Sequential Random Character Generator

2004-02-25 Thread Miles Thompson
At 11:25 AM 2/25/2004 -0500, [EMAIL PROTECTED] wrote: I'm trying to create a PHP sequential random character generator that will output to a file database of some sort. The randomization needs to be using both capital letters and numbers. I need to output like 2 million records. Can someone poin

Re: [PHP] Sequential Random Character Generator

2004-02-25 Thread Adam Bregenzer
On Wed, 2004-02-25 at 11:25, [EMAIL PROTECTED] wrote: > I'm trying to create a PHP sequential random character generator that will output to > a file database of some sort. The randomization needs to be using both capital > letters and numbers. I need to output like 2 million records. Can someone