Can anyone tell me how to pass some variables from one to the next page in PHP3
I can't seem to get it running with the following code
$text ="frank";
$fields = "text";
$fExplode = explode(" ", $fields);
reset ($fExplode);
while (list($key, $value) = each ($fExplode))
or this code:
$fields = "text";
foreach (explode(' ', $fields) AS $key => $val) {
print '<input type="hidden" name="'.$val.'" value="'.$$val.'">';
}
Thanx