i have a multipage application. The Variables are stored in sessions
which then are generated to show the user the results from there i
would like the user to his submit and it be emailed back to me....how
would i make that happen?
here is how i have my sessions stored
<?
session_start() ;
header("Cache-control: private");
$_SESSION['Page_7'] = $_POST;
?>
and how they are displayed:
<?
ksort($_SESSION );
foreach ($_SESSION as $page=>$_POST)
{
echo "<div class=\"h3\">$p age</div><br>";
foreach ($_POST as $field=>$value)
{
echo "$field: $value<br>";
}
}
?>
which then are generated to show the user the results from there i
would like the user to his submit and it be emailed back to me....how
would i make that happen?
here is how i have my sessions stored
<?
session_start() ;
header("Cache-control: private");
$_SESSION['Page_7'] = $_POST;
?>
and how they are displayed:
<?
ksort($_SESSION );
foreach ($_SESSION as $page=>$_POST)
{
echo "<div class=\"h3\">$p age</div><br>";
foreach ($_POST as $field=>$value)
{
echo "$field: $value<br>";
}
}
?>
Comment