What is the output of the following code? seenagape 10 years ago What is the output of the following code? function increment ($val) { $_GET[‘m’] = (int)$_GET[‘m’] + 1; } $_GET[‘m’] = 1; echo $_GET[‘m’]; A. 1 Explanation: ← Previous question Next question →