Is there a way to encrypt text from php?
Answers were Sorted based on User's Feedback
Answer / mahidhar
yes,using base64_encode() using this function we encrypt
the text messsage.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / nirmit
MD5() is a one way hash funtion. Its returns a hash but the
hash cannot return the original string. Instead, AES_CRYPT
(), BASE64_ENCODE() can be used for encryption.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / dinesh g
Can use CRIPT(), MD5(), SHA1(), SHA2xx() algorithms but
SHA2XX() algorithm is advisable since MD5 & SHA1 cause
security issue.
Is This Answer Correct ? | 0 Yes | 0 No |
What is difference between single quotes and double quotes in php?
How to redirect a page in php?
Which PHP function would you use to send an email?
What are the data types in php?
What is the function mysql_pconnect() usefull for?
Differentiate between require and include?
What is input sanitization in php?
Tell me what is the importance of "action" attribute in a html form?
What is T_PAAMAYIM_NEKUDOTAYIM?
Tell me can you extend a final defined class?
What is mvc? Why its been used?
how to detect a mobile device using php