How can you determine if magic_quotes_gpc is enabled? (Choose 2)
What is the output of the following code?
1
2 for ($i = 0; $i < 1.02; $i += 0.17) {
3 $a[$i] = $i;
4 }
5 echo count($a);
6 ?>
Which of the following did not result in an output error in PHP 4 but does in PHP 5?
Given the default PHP configuration, how can all of the parameters provided via GET be accessed in a form of a string?