
Display text in md5 format
Alright, here, I am going to show you how to display text in md5 format.
Action.php
[HTML] <HTML>
<form action='recieved.php' method='GET'>
FirstName: </br> <input type='text' name='FirstName'> </br>
LastName: </br> <input type='text' name='LastName'> </br>
<input type='submit' value='Submit'>
</form>
</HTML>[/HTML]
now recieved.php
[PHP]<?php
$f = md5($_GET['FirstName']);
$l = md5($_GET['LastName']);
echo "Your first name is $f and your last name is $l";
?>[/PHP]
now once you look at the page, it should be displayed in md5 format.