|
Random password generator
|
|
07-28-2010, 06:03 PM
Post: #1
|
|||
|
|||
|
Random password generator
If any1 in here needs some password (or random string) generator in php, here is the way you can get it!
![]() PHP Code: <?phpIf there is any questions, feel free to post!
Read rules ![]()
|
|||
|
07-28-2010, 08:20 PM
Post: #2
|
|||
|
|||
|
RE: Random password generator
Very good script, interesting algorithm.
I just changed some variables and translated that into English : PHP Code: <?phpThere's a fine line between genius and insanity. I have erased this line. Oscar Levant There's a fine line between an administrator and black hat hacker. I have erased this line. Dr DEBCOL |
|||
|
07-29-2010, 06:09 AM
Post: #3
|
|||
|
|||
|
RE: Random password generator
Very interesting script
but in php ..what exactly does '.=' do. Is it appending characters onto the string?
"Character is determined more by the lack of certain experiences than by those one has had." Friedrich Nietzsche |
|||
|
07-29-2010, 07:25 AM
(This post was last modified: 07-29-2010 07:28 AM by l3g1sl4tor.)
Post: #4
|
|||
|
|||
|
RE: Random password generator
adding a letter to a string, yea
just paste it on alredy existing string
Read rules ![]()
|
|||
|
07-29-2010, 02:27 PM
Post: #5
|
|||
|
|||
|
RE: Random password generator
nice source code
|
|||
|
08-02-2010, 01:08 AM
Post: #6
|
|||
|
|||
RE: Random password generator
(07-29-2010 06:09 AM)Back_track Wrote: Very interesting scriptIt's used to concat a string to an existing string. Free image hosting at http://myph.us. |
|||
|
08-02-2010, 06:41 AM
Post: #7
|
|||
|
|||
|
RE: Random password generator
Yeah concatenation is one of operations on strings.
There is a problem with concatenation that i posted here : http://www.pro9ramming.com/concatenated-...t-829.html Maybe this example can clear some things . . . There's a fine line between genius and insanity. I have erased this line. Oscar Levant There's a fine line between an administrator and black hat hacker. I have erased this line. Dr DEBCOL |
|||
|
« Next Oldest | Next Newest »
|








but in php ..what exactly does '.=' do. Is it appending characters onto the string?