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 |
A process can run only in the background. State Whether True or False?
How to invoke a user function?
What is php resource type?
Draw the architecture of Zend engine?
Explain me is multiple inheritance supported in php?
What is stripslashes php?
what are the differences between php and perl
what is variable scope, which variables are accessible from where and what are "undefined variable" errors?
In how many ways we can retrieve the date in the result set of mysql using PHP?
What are psrs?
What is the difference between get and post method in php?
What is new keyword in php?