CODE
LIBARY.COM
Home
/
PHP
PHP Random password using md5() and time()
Random password using md5() and time()
<? $n = "8"; $pass = substr(md5(time()),0,$n); echo $pass; ?>
$n = "8"; $pass = substr(md5(time()),0,$n); echo $pass; ?>
Copy to Clipboard
Related Snippets
PHP Random password using md5() and rand()
PHP PHP Array: Find First and Last Element
PHP Change file upload name using Code Igniter
PHP Web-based Link Generator using PHP
PHP Integrating Youtube HTML5 - Sumonst21
PHP Basic Directory Listing
PHP Proxy Detection
PHP File read using while
PHP WordPress Function: wp_get_post_tags()
PHP Observer Design Pattern