Discussion :: PHP MCQs
-
Which of the following php statement/statements will store 111 in variable num?i) int $num = 111;ii) int mum = 111;iii) $num = 111;iv) 111 = $num;
Answer : Option C
Explanation :
You need not specify the datatype in php.
Be The First To Comment