PHP - Request Lifecycle
You wrote this PHP code:
But after refreshing the page, $sum is always 15. You want $sum to keep increasing by 5 each time the page loads. What is the problem?
<?php $sum = 10; $sum += 5; ?>
But after refreshing the page, $sum is always 15. You want $sum to keep increasing by 5 each time the page loads. What is the problem?
