Initial commit
This commit is contained in:
19
itinerary_beforecontinuing.php
Normal file
19
itinerary_beforecontinuing.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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();
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user