Basic PHP Programming Question:
What is the functionality of MD5 function in PHP?
Answer:
string md5(string)
It calculates the MD5 hash of a string. The hash is a 32-character hexadecimal number.
It calculates the MD5 hash of a string. The hash is a 32-character hexadecimal number.
Previous Question | Next Question |
How can we encrypt and decrypt a data present in a mysql table using mysql? | How can we change the name of a column of a table? |