InterviewSolution
Saved Bookmarks
| 1. |
What are PHP variables preceded by?(a) _(b) @(c) $(d) & |
|
Answer» Right choice is (c) $ The 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. |
|