9. What will be the output of the following PHP code?
<?php
$num = 1;
$num = 2;
print $num. "+". $numl;
3.
4.
5.
Answers
Answered by
0
Answer:
1+2 will be the answer.
Similar questions