">
<?php$n = "12";$n1 = "21";print $n+$n1;?>
The numbers inside the double quotes are considered as integers and not string, therefore the value 33 is printed and not 12+21.
Previous Question Next Question
Your comments will be displayed only after manual approval.