19 lines
354 B
PHP
19 lines
354 B
PHP
<?php
|
|
|
|
include 'php/classes/page.php';
|
|
|
|
$page = new Page();
|
|
|
|
$page->attr('title','Before You Continue To View Your Itinerary');
|
|
|
|
if(isset($_GET['type']) && !empty($_GET['type']))
|
|
{
|
|
$page->data('itinerary_type',$_GET['type']);
|
|
$page->content('itinerary_beforecontinuing.php');
|
|
}
|
|
else
|
|
header('Location: viewyouritinerary.php');
|
|
|
|
$page->process();
|
|
|
|
?>
|