What is escaping to php?
No Answer is Posted For this Question
Be the First to Post Answer
What does the arrow mean in php?
Explain me difference between mysql_connect and mysql_pconnect?
What is the difference between ereg_replace() and eregi_replace()?
How can we destroy the session, how can we unset the variable of a session?
What is magic quotes?
How can I prevent sql-injection in php?
What are the benefits of using php?
What software is required to run php?
How do you use bcrypt for hashing passwords in php?
Do you know design patterns. List few?
Write down the code for save an uploaded file in php.
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.