here is the simple password generator script
use if you thiks its useful for you or your site
use if you thiks its useful for you or your site
<?php
/**
* 1 Line Random Password Generator
* @Usage: 'Characters To Use', Start Point, End Point, (Currently Displays 10 Digit Passwords)
**/
echo substr(str_shuffle('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$'), 0, 10);
/** Add a Link To Refresh Page For Testing Purposes */
echo '<br/><a href="test.php">Refresh</a>';
?>
//
//
//
Comment