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