Answer Posted / isaac
PHP: Hypertext Preprocessor, an open source, server-side,
HTML embedded scripting language used to create dynamic Web
pages. In an HTML document, PHP script (similar syntax to
that of Perl or C ) is enclosed within special PHP tags.
Because PHP is embedded within tags,And, because PHP is
executed on the server, the client cannot view the PHP code.
PHP can perform any task!
| Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
What are the differences between mysqli_connect and mysqli_pconnect?
What is the difference between array_pop() and array_push()?
What is the default session time in php?
What is apache and php?
What is final keyword in php?
Explain Constant in Class?
Is not null mysql?
How to set session.gc_divisor properly?
What is x+ mode in fopen() used for?
Who created numbers?
How is php different from other languages?
Tell me when a conditional statement is ended with an endif?
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.
Tell me what the difference between the 'bitwise and' operator and the 'logical and' operator?
How to create and destroy cookies in php?