<!DOCTYPE html>
<html>
<body>
<?php
$x=17;
echo ++$x;
echo "<br>";
$y=17;
echo $y++;
$z=17;
echo --$z;
$i=17;
echo $i--;
?>
</body>
</html>