• home
  • forum
  • my
  • kt
  • download
  • Random Number Password Generator

    Author: 2008-08-18 09:42:43 From:

    Code:

    CODE
    <?php

    $charset = array('0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f','g','h','i','j','k','l','m',
    'n','o','p','q','r','s','t','u','v','w','x','y','z','A','B','C','D','E','F','G','H','I','J','K','L','M','N','O',
    'P','Q','R','S','T','U','V','W','X','Y','Z',',','.','/','<','>','?',';',':','[',']','{','}','|','!','@','#','&','%','^','*','(',')','-','=','_','+','~');
    // A huge array of characters that will be in the password, items can be added and removed at will

    $size = sizeof($charset) - 1; // Get the number of items in the array

    $password = ""; // To stop possible xss injection
    for($i = 0, $i < 8, $i++)
    {
    $password .= $charset[rand(0, $size)]; // Grab a random character
    }
    echo "<b>Random Password:</b> $password"; // Output the password

    ?>


    Enjoy!

    discuss this topic to forum

    relation tutorial

    No relevant information

    Category

      Ad Management (4)
      Calendars (3)
      Chat Systems (7)
      Content Management (6)
      Cookies and Sessions (8)
      Counters (8)
      Database Related (8)
      Date and Time (9)
      Development (6)
      Discussion Boards (7)
      E Commerce (6)
      Email Systems (9)
      Error Handling (5)
      File Manipulation (10)
      Flash and PHP (4)
      Form Processing (7)
      Guestbooks (8)
      Image Manipulation (3)
      Installing PHP (5)
      Introduction to PHP (9)
      Link Indexing (6)
      Mailing List Management (8)
      Miscellaneous (10)
      Networking (6)
      News Publishing (6)
      OOP (8)
      PEAR (6)
      PHP vs Other Languages (2)
      Polls and Voting (5)
      Postcards (0)
      Randomizing (13)
      Redirection (11)
      Searching (9)
      Security (29)
      Site Navigation (16)
      User Authentication (14)
      WAP and WML (7)
      Web Fetching (8)
      Web Traffic Analysis (15)
      XML and PHP (16)

    New

    Hot