Hello
I have this problem in php:
Notice: Undefined variable: _Get in /.../script/install.php on line 3
and this is the code in line 3:
if($_Get['step']<1)
so what is the problem?
Hello
I have this problem in php:
Notice: Undefined variable: _Get in /.../script/install.php on line 3
and this is the code in line 3:
if($_Get['step']<1)
so what is the problem?
Variable names are case sensitive in PHP.
if($_GET['step']<1)
also, to avoid notice
level warnings, you may want to check for the existence of the variable first:
if ((array_key_exists($_GET, "step")) and ($_GET['step']<1))
Also make sure that in your url you have the parameter. EG: install.php?step=1