I want pass the value of $step whenever I click the "next step"
by this code :
$step_="<a href=install.php?step=1>next step here</a>";
but I set breakpints and found it won't change. Why?
By the way I have change "rigistered_global" as turn on in
php.ini.
if(file_exists("config.php")){echo"finish";exit;}
$correct='<font color=blue>OK</font>';
$incorrect='<font color=red>not pass</font>';
$check=1;
if(empty($step)) $step=0;
if($step==0){
echo $step; // yes , $step is 0;
$body="well come you<br> ;
$step_="<a href=install.php?step=1>next step here</a>";
}
echo $step; // I checked here, why $step is still 0 !!!!!!!
if($step==1){
echo
$body="check if all program here<br><br><br>";
echo $body;
.....