<?php $x=20; $y=60; $z=$x+$y; $msg = 'Sum of x+y = '; print($msg.$z); ?>
Output Results
Sum of x+y = 60