In what are the ways you can encrypt the password ?
Answer Posted / rajyalakshmi
base64_encode
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Maine 12th ke bad 2 years ka web designing ka course kiya hai. Php me achcha hu. Ek fresher ko is field me kitna mil sakta hai ?
Is rent a variable cost?
What was the old name of php?
Explain how you can update memcached when you make changes to php?
How should a model be structured in mvc?
What is full form of php? Who is the father or inventor of php?
Is uploaded file php?
What is the differences between $a != $B and $a !== $B?
What is "print" in php?
Do you know what is use of count() function in php?
How cookies are trported from browsers to servers?
What is the meaning of a final class and a final method?
What is difference between get and post?
What is use of header() function in php? What the limitation of header()?
Binary tree question - Node has numeric data (int) The function takes depth as argument and sum all the value of the node of the depth. For instance, (0) depth 0 / \ 10 20 depth 1 / \ / \ 40 50 60 70 depth 2 so if you pass get_sum(2), you would return 220 which is 40+50+60+70 (sum of depth2) write the function.