Is there a way to encrypt text from php?

Answers were Sorted based on User's Feedback



Is there a way to encrypt text from php?..

Answer / mahidhar

yes,using base64_encode() using this function we encrypt
the text messsage.

Is This Answer Correct ?    3 Yes 0 No

Is there a way to encrypt text from php?..

Answer / mahidhar

using base64_encode() functions.

Is This Answer Correct ?    1 Yes 0 No

Is there a way to encrypt text from php?..

Answer / siva

using md5()

Is This Answer Correct ?    0 Yes 0 No

Is there a way to encrypt text from php?..

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

Is there a way to encrypt text from php?..

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

Post New Answer

More PHP Interview Questions

What is difference between single quotes and double quotes in php?

0 Answers  


How to redirect a page in php?

0 Answers  


Which PHP function would you use to send an email?

0 Answers  


What are the data types in php?

0 Answers  


What is the function mysql_pconnect() usefull for?

0 Answers  


Differentiate between require and include?

0 Answers  


What is input sanitization in php?

0 Answers  


Tell me what is the importance of "action" attribute in a html form?

0 Answers  


What is T_PAAMAYIM_NEKUDOTAYIM?

0 Answers  


Tell me can you extend a final defined class?

0 Answers  


What is mvc? Why its been used?

0 Answers  


how to detect a mobile device using php

0 Answers  


Categories