Zoe

Hi my name is Zoe and David

INCREMENT / DECREMENT OPERATOR

in PHP is basically " The PHP increment operators are used to increment a variable's value. The PHP decrement operators are used to decrement a variable's value. "

Example :

<!DOCTYPE html>
<html>
<body>

<?php
$x = 10;  
echo ++$x;
?>  

</body>
</html>

© 2021 Created By "KARTIK A DIGITAL INFLUENCER" || All Rights Reserved