">
<?phpfunction Example($d){ $d = 12 + $d; echo "$d";}Example(6);?>
The function is defined as echo “$d”. This means $d is treated as a string and not as a variable.
Previous Question Next Question
Your comments will be displayed only after manual approval.