I have a password stored in the database and it's showing in browser as md5 because it's saved there as md5
below is the code am using
$result=$link->query("select * from adminpanel");
 
echo "<tr><th>User Name</th><th>Password</th></tr>";
 
// loop through results of database query, displaying them in the table
 
while($row =mysqli_fetch_array($result,MYSQLI_ASSOC)) {
// foreach( $result as $row ) { 
 
 
// echo out the contents of each row into a table
 
echo "<tr>";
 
echo '<td>' . $row['username'] . '</td>';
 
echo '<td>' . $row['password'] . '</td>';
It is showing me the user name and password in a table against each user but the password I want to show in ENGLISH. Is it possible?
 
     
     
     
    