Hello,
I'm trying to get this password generator to work. I keep getting
brought back to the original page, never to the page which says what my
password will be in encrypted format. I'm running php4 and apache2 on a
FreeBSD system if it matters.
Any help appreciated.
Thanks.
Dave.
<html>
<head>
<title>Passwo rd Creator</title>
</head>
<body>
<form action="generat ing_passwords.p hp" method="post">
<h3>Enter a password to create MD5 and Crypt based passwords.</h3>
Password: <input type="text" name="password" >
<input type="submit" name="create" value="Create Passwords!">
</form>
</body>
</html>
<?
if(isset($passw ord)) {
?>
<html>
<head>
<title>your password</title>
</head>
<body>
<h3>The passwords for the string "<?=$password?> " are:</h3>
<ul>
<li><b>MD5:</b> <?=md5($passwor d)?>
<li><b>Crypt: </b> <?=crypt($passw ord)?>
</ul>
<?
}
?>
</body>
</html>
I'm trying to get this password generator to work. I keep getting
brought back to the original page, never to the page which says what my
password will be in encrypted format. I'm running php4 and apache2 on a
FreeBSD system if it matters.
Any help appreciated.
Thanks.
Dave.
<html>
<head>
<title>Passwo rd Creator</title>
</head>
<body>
<form action="generat ing_passwords.p hp" method="post">
<h3>Enter a password to create MD5 and Crypt based passwords.</h3>
Password: <input type="text" name="password" >
<input type="submit" name="create" value="Create Passwords!">
</form>
</body>
</html>
<?
if(isset($passw ord)) {
?>
<html>
<head>
<title>your password</title>
</head>
<body>
<h3>The passwords for the string "<?=$password?> " are:</h3>
<ul>
<li><b>MD5:</b> <?=md5($passwor d)?>
<li><b>Crypt: </b> <?=crypt($passw ord)?>
</ul>
<?
}
?>
</body>
</html>
Comment