|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-01-29 05:10 UTC] sniper@php.net
[2001-03-16 16:51 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 11:00:02 2025 UTC |
HTML> <HEAD><TITLE>Senhas</TITLE></HEAD> <BODY> <?php if (!$submit) { ?><form method="post" action="random.php"> <p><font face="Arial" size="2" color="#006666">RA: <input type="text" name="ra" size="5" maxlength="5"> </font><font color="#006868"><br> hs</p> <p><font face="Arial" size="2"> <input type="submit" value="Enviar"> <input type="reset" value="Limpar"> </font></p> </form> <?php } if ($submit = "Enviar") { $dir = "/home/httpd/html/testes"; $allow = "abcdefgh2ijkm3npqr4stuv5wxyz6789"; srand((double)microtime()*1000000); for($i=0; $i<6; $i++) { $password .= $allow[rand()%strlen($allow)]; } print "Sua Senha: $password<br>"; $fo = fopen("$dir/senhas", "a"); $fw = fputs($fo, "#$ra#$password"); $fc = fclose($fo); $teste = exec("echo \"\" >> /$dir/senhas"); copy("$dir/senhas", "$dir/senhas.bkp"); chmod("$dir/senhas.bkp", "0644"); } ?> </BODY> </HTML>