InterviewSolution
Saved Bookmarks
| 1. |
PHP variables are preceded by __________(a) _(b) @(c) $(d) & |
|
Answer» Correct choice is (c) $ Explanation: All the PHP scripts that use variables have variable names preceded by the dollar sign (‘$’). The variables are signified by this identifier, irrespective of the value it stores. |
|