Mega Code Archive
Categories
/
Php
/
Operator
Using pre- and postincrement
"; echo "Value afterwords: ".$test; echo "
"; $test=1; echo "Postincrement: ".($test++); echo "
"; echo "Value afterwords: ".$test; ?>