Mega Code Archive

 
Categories / Php / Operator
 

Peculiarities of the ++ and -- Operators

<? $b=true; echo "b: $b<br>"; $b++; echo "b: $b<br>"; ?>