Advanced Random Password Generator - Printable Version +- Support Forums (https://www.supportforums.net) +-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87) +--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18) +---- Forum: PHP The Hypertext Preprocessor (https://www.supportforums.net/forumdisplay.php?fid=21) +---- Thread: Advanced Random Password Generator (/showthread.php?tid=2594) |
Advanced Random Password Generator - zone - 11-06-2009 Credits and Source: http://www.dreamincode.net/ Description: Create random passwords with a chosen length and a specified number of numbers. Uses both lower case and capital letters, which are chosen at random. And example is: wep5Q268LtTe Snippet: PHP Code: function passwordGen($length,$nums){ Instructions: Just add to the appropriate page and call the procedure like passwordGen(12,4) for a password 12 letters long with 4 numbers like in the example: wep5Q268LtTe That's It RE: Advanced Random Password Generator - ßeowulf - 11-06-2009 Just like my own, except in PHP. Looks good. RE: Advanced Random Password Generator - zone - 11-06-2009 (11-06-2009, 02:26 PM)Korchidoom Wrote: Just like my own, except in PHP. Looks good. Good to read that it is useful for you. Thanks for your comments, be happy always |