our approach|contact us
$cars_on_lot++;
The auto incrementer (++) adds 1 to the $cars_on lot variable.
print '<b>$cars_on_lot++</b> is the same to PHP as <b>$cars_on_lot = $cars_on_lot + 1</b>';
Prints the literal text: $cars_on_lot++ is the same to PHP as $cars_on_lot + 1.
<< BACK
NEXT >>