My friend, is able to run this without no errors:
$A = $_GET[a];
However, I am unable to run this get[] because it gives me this error message:
Use of undefined constant a - assumed 'a'
Is there a way I can change in the PHP settings that I can run the code like my friend can run this code?
Many thanks!
I understand that you have to write it this way:
$A = $_GET['a'];