Home » PHP » PHP Introduction » Question
  1. Which of the following php statement/statements will store 120 in variable n?
    1. 120 = $n;
    2. int $n= 120;
    3. int n= 120;
    4. $n= 120;
    5. None of these
Correct Option: D

You need not specify the datatype in php.



Your comments will be displayed only after manual approval.