Who is the father of PHP and explain the changes in PHP
versions?
Answer Posted / sukhsagar kumawat
Rasmus Lerdorf is the father of PHP in 1994
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Explain the difference between array_merge() and array_combine()?
Tell me how would you declare a function that receives one parameter name hello?
What is php sequence?
How to check a variable is an array or not in php?
How can you associate a variable with a session?
How do you end a session in php?
How is csrf token generated?
What is the importance of "action" attribute in a html form?
How to download and install php for windows?
Is php faster than nodejs?
What is the default time of cookie in php?
How to get number of days between two given dates using PHP?
What are the three classes of errors that can occur 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.
Can I use php in html?