<?php$a = 'hello';$b = 'my';$c = 'world';$statement1 = $a.' '.$b.' '.$c.'<br />';$statement2 = $b.' '.$c.' '.$a;print $statement1;print $statement2;?>