i set up a multipage form about a month ago using Sessions everything
worked well and i moved forward with working on other pages i just
checked the form to make sure it is all working properly and its giving
me an error:
Warning: Invalid argument supplied for foreach() in
/home/mastersc/public_html/testthis.php on line 24
this is the code:
<?
ksort($_SESSION );
foreach ($_SESSION as $page=>$_POST)
{
echo "<div class=\"h3\">$p age</div><br>";
foreach ($_POST as $field=>$value) <--this would be line 24-->
{
echo "$field: $value<br>";
}
}
?>
any suggestions?
worked well and i moved forward with working on other pages i just
checked the form to make sure it is all working properly and its giving
me an error:
Warning: Invalid argument supplied for foreach() in
/home/mastersc/public_html/testthis.php on line 24
this is the code:
<?
ksort($_SESSION );
foreach ($_SESSION as $page=>$_POST)
{
echo "<div class=\"h3\">$p age</div><br>";
foreach ($_POST as $field=>$value) <--this would be line 24-->
{
echo "$field: $value<br>";
}
}
?>
any suggestions?
Comment