J
juanmarcosar
Guest
<html>
<title> My Web Page </title>
<center>
<form method="post" action="testing.php">
<input name=pass type=text>
<input name=submit type=submit>
<input name=seen type=hidden>
</form>
<?php
$pass2 = $_REQUEST['pass'];
$pass3 = md5($pass2);
echo The md5 of $pass2 is
echo $pass3
?>
</center>
</html>
<title> My Web Page </title>
<center>
<form method="post" action="testing.php">
<input name=pass type=text>
<input name=submit type=submit>
<input name=seen type=hidden>
</form>
<?php
$pass2 = $_REQUEST['pass'];
$pass3 = md5($pass2);
echo The md5 of $pass2 is
echo $pass3
?>
</center>
</html>