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 |
How do I use isdigit function?
What type of errors can be occurred in php?
How do you add a joomla Template in admin panel of joomla? Please mention the steps
3 Answers Cognizant, T3 Softwares,
Which is the best method to fetch the data from mysql? 1.mysql_fetch_array() 2.mysql_fetch_object() 3.mysql_fetch_row() 4.mysql_fetch_assoc()
What are some of the advanced features of php?
What are the characteristics of php variables?
Can I include php in javascript?
Name the Functions in IMAP, POP3 AND LDAP?
What is crypt () in php?
How can you retrieve data from the mysql database using php?
Which php framework is fastest?
What is the use of 'print' in php?