Simple Password Generator Script

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Simple Password Generator Script

    here is the simple password generator script
    use if you thiks its useful for you or your site
    Attached Files
    They Make Rules & I Break Them

    #2
    i created a 1 line password generator that can be easily added to any script i believe.

    PHP Code:
    <?php
       
    /** 
       * 1 Line Random Password Generator
       * @Usage: 'Characters To Use', Start Point, End Point, (Currently Displays 10 Digit Passwords)
       **/
    echo substr(str_shuffle('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$'), 010);
      
    /** Add a Link To Refresh Page For Testing Purposes */
    echo '<br/><a href="test.php">Refresh</a>';
    ?>
    //
    //
    //
    <?php
    include ('Ghost');
    if ($Post == true) {
    echo '

    sigpic
    alt='coding-talk.com!!' />';
    echo 'Sharing Is Caring!';
    } else {
    echo '

    alt='the username GHOST has been comprimised!' />';
    echo 'OMG SOMEBODY HELP ME!!';
    }
    ?>

    Comment


      #3
      Ghost nice 1
      They Make Rules & I Break Them

      Comment

      Working...
      X