Two forms on one page
am 04.01.2011 00:17:15 von Ethan RosenbergOooops - left out the text that was supposed to be in the quotes.
Dear List -
I would like to have two(2) forms in one PHP script. I would like to
have the forms appear sequentially; ie, that the first form would
appear, the data would be entered, and then the second form would
appear, the data would be entered, and the script would exit.
The code below displays both forms simultaneously. After the data is
entered for the first form, the second form appears again. After the
data is entered for the second form, the script displays the
statement "Enter your date of birth, in mm/dd/yyyy format: " from
the first form.
Would you please help me correct the script so that it will perform
as required.
Thanks.
Here is the code:
============
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
global $todo;
// if form not yet submitted
// display form
if ( isset($_POST['cat']) && $_POST['submit'] === 'Submit Ktten' )
die();
if ( isset($_POST['submit']) && $_POST['submit'] === 'Submit' )
agerdo();
else
{
echo "";
}
function agerdo()
{
global $todo;
// echo $todo;
// process form input
// split date value into components
$dateArr = explode('/', $_POST['dob']);
// calculate timestamp corresponding to date value
$dateTs = strtotime($_POST['dob']);
// calculate timestamp corresponding to 'today'
$now = strtotime('today');
// check that the value entered is in the correct format
if ( sizeof($dateArr) != 3 )
die('ERROR: Please enter a valid date of birth');
// check that the value entered is a valid date
if ( !checkdate($dateArr[0], $dateArr[1], $dateArr[2]) )
die('ERROR: Please enter a valid date of birth');
// check that the date entered is earlier than 'today'
if ( $dateTs >= $now )
die('ERROR: Please enter a date of birth earlier than today');
// calculate difference between date of birth and today in days
// convert to years
// convert remaining days to months
// print output
$ageDays = floor(($now - $dateTs) / 86400);
$ageYears = floor($ageDays / 365);
$ageMonths = floor(($ageDays - ($ageYears * 365)) / 30);
echo "You are approximately $ageYears years and $ageMonths months old.";
}
if ( isset($_POST['submit']) && $_POST['submit'] === 'Submit Kitten' )
catdo();
if ( !isset($_POST['cat'])) //&& $_POST['submit'] === 'Submit Kitten' )
{
echo <<