require_once('../include/validation.php');
$form = new FormValidation('flights_form','submit');
$form->addRequiredField('Name:', 'name');
$form->addRequiredField('Email:', 'email','email');
$form->addRequiredField('Phone:', 'phone');
$form->addRequiredField('From:', 'fromlocation');
$form->addRequiredField('To:', 'tolocation');
if ($form->isSubmitted())
{
if ($form->validate())
{
if($_POST['adults']=='0') $validatemsg = "You must at least have one adult!
";
else
{
$msg_result = $form->sendMailTemplate('../templates/mailform/flights.tpl',
$_POST['name'],$_POST['email'],
'info@classytravel.ca', 'Flights Application Form',
'classytravel.ca');
if(strlen($msg_result)==0)
{
$msg_result = "
Thank you for submitting your request. A representative will get back to you shortly.
"; echo ""; } } } } $form->display(); ?>
|
|||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||