What is difference between put and post method in http?
No Answer is Posted For this Question
Be the First to Post Answer
Which software is best for php?
write a note on Testing the web site
What are the advantages of triggers?
What is session php?
Does not want to see PHPSESSID in the url. How can be done this ?
What is split function in php?
What is regular expression in php?
What do you mean range() in php?
What is return value in php?
How can we get the error when there is a problem to upload a file?
What is the best way to test the strpos() return value 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.