PHP - Request Lifecycle
Consider this PHP code run twice in a row (two separate page loads):
What will be the output each time the script runs?
<?php $counter = 0; $counter++; echo $counter; ?>
What will be the output each time the script runs?
