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