You can't decode the password.
You need to adjust the other script to compare the passwords as they are, i.e not MD5ing it then comparing it with the value in the database.
Unless you use a different table and the passwords there are not encoded. In that case you will need to MD5 the value in the database when comparing:
Code:
SELECT [...] FROM tableName WHERE username=$username and MD5(password)=$password;