How can we send mail using JavaScript?
Answer Posted / 567
56
| Is This Answer Correct ? | 36 Yes | 69 No |
Post New Answer View All Answers
What is a static variable in php?
How to open a file in php?
Tell me what is the definition of a session?
What language is php based on?
how retrive the video file in php using video tag
What does the scope of variables mean?
How we load all classes that placed in different directory in one php file , means how to do auto load classes.
How can you pass a variable by reference?
What is the difference between explode and split?
Is strcmp case sensitive?
What is putenv?
Is php required for wordpress?
Tell me what type of operation is needed when passing values through a form or an url?
What websites use 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.