How can we encrypt the username and password using PHP?
Answer Posted / sonal
by base64_encode()
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is the value for this auto incremented field user_pri_id?
How can I increase my website session?
What are the differences between echo and print?
How can you increase the maximum execution time of a script in php?
Tell me how can we pass the variable through the navigation between the pages?
How to stop the execution of php script?
How do you check if an arraylist is empty?
What is the w3c?
What is file upload?
What are the main error types in php?
Could we start a variable with number like $4name?
What is the use of extract function in php?
Do while loops php?
Which MySQL function would you use to select a database?
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.