Code Library
Home Submit Free Hosting Link To Us Contacts

PHP Random password using md5() and time()

PHP Random password using md5() and time() PHP PHP Random password using md5() and time() Download (.zip)



<?
$n = "8";
$pass = substr(md5(time()),0,$n);
echo $pass;
?>







Tatet