$test=1;echo "Preincrement: ".(++$test);echo "";echo "Value afterwords: ".$test;echo "";$test=1;echo "Postincrement: ".($test++);echo "";echo "Value afterwords: ".$test;?>