Hi..anybody.I am newbie here and have a form which have to pass through other pages and display on that page.How can I achieved it?
For the first page,here is the script for session value:
<?php
session_start();
for ($i = 1; $i <= 3; $i++) {
$_SESSION['selected'][$i] = date('D d\t\h M', strtotime('+' . $i . ' days'));
echo '<option>' . $_SESSION['selected'][$i] . '</option>';
}
?>
After user selected the date,page redirect to second page and display the selected date.Thanks for your generious help...