If you should add a 'password' into a TABLE using phpMyAdmin
it is almost sure you can not add the plain password.
Let's say password is 'mypass'
What you shouls enter into database TABLE password field
is most often md5('mypass')
which in this case is: a029d0df84eb5549c641e04a9ef389e5
Sometimes sha1('mypass') is used
but 90% use [man]md5/man
<?php
$password = 'mypass';
echo md5($password);
echo '<br />';
echo $password;
?>