InterviewSolution
Saved Bookmarks
| 1. |
What is the output from PHP?(a) statically generated(b) dynamically generated(c) not generated(d) no output |
|
Answer» Correct option is (b) dynamically generated To explain: The interpreter switches between code mode back and text mode when it sees another special tag that signals the end of the code. This enables the mix of static text with dynamically generated results. |
|