<!DOCTYPE html> <html lang="en"> <head> <title>PHP Incrementing and Decrementing Operators-aimtocode</title> </head> <body> <?php $x = 10; echo ++$x; echo "<br>"; echo $x; echo "<hr>"; $x = 10; echo $x++; echo "<br>"; echo $x; echo "<hr>"; $x = 10; echo --$x; echo "<br>"; echo $x; echo "<hr>"; $x = 10; echo $x--; echo "<br>"; echo $x; ?> </body> </html>