-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This reverts commit f16bd9a.
- Loading branch information
Carlos Vasquez
committed
Oct 28, 2012
1 parent
f16bd9a
commit 31713d7
Showing
557 changed files
with
165,269 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
GatorAirlines | ||
============= | ||
|
||
UF Software Engineering Project |
2 changes: 2 additions & 0 deletions
2
...ces/Chosen - a JavaScript plugin for jQuery and Prototype - makes select boxes better.url
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[InternetShortcut] | ||
URL=http://harvesthq.github.com/chosen/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[InternetShortcut] | ||
URL=http://blog.facilelogin.com/2008/07/enabling-ssl-on-wamp.html |
2 changes: 2 additions & 0 deletions
2
References/Make SSH connections with PHP - Kevin van Zonneveld.url
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[InternetShortcut] | ||
URL=http://kvz.io/blog/2007/07/24/make-ssh-connections-with-php/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[InternetShortcut] | ||
URL=http://docs.jquery.com/Plugins/Validation#Validate_forms_like_you.27ve_never_been_validating_before.21 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[InternetShortcut] | ||
URL=http://www.fakenamegenerator.com/thanks.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[InternetShortcut] | ||
URL=http://bassistance.de/jquery-plugins/jquery-plugin-validation/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
CREATE table if not exists customers | ||
( | ||
cid int auto_increment primary key, | ||
email varchar(30) not null, | ||
first_name varchar(30), | ||
last_name varchar(30), | ||
password varchar(30), | ||
addr varchar(30), | ||
city varchar(30), | ||
state varchar(30), | ||
zip varchar(30), | ||
cc_num int(16), | ||
u_type int(2) | ||
); | ||
|
||
CREATE table if not exists airports | ||
( | ||
airport_id int auto_increment primary key, | ||
city varchar(40), | ||
state varchar(2), | ||
iata varchar(3), | ||
name varchar(65) | ||
); | ||
|
||
CREATE table if not exists airplanes | ||
( | ||
plane_id int auto_increment primary key, | ||
type varchar(40), | ||
chart_addr varchar(50), | ||
num_first_class int(3), | ||
num_coach_class int(3) | ||
); | ||
|
||
CREATE table if not exists flights | ||
( | ||
flight_id int auto_increment primary key, | ||
plane_id int, | ||
org_id int, | ||
dest_id int, | ||
first_class_cost int(4), | ||
coach_class_cost int(4), | ||
e_depart_time varchar(30), | ||
e_arrival_time varchar(30), | ||
depart_time varchar(30), | ||
arrival_time varchar(30), | ||
distance int(5) | ||
); | ||
|
||
CREATE table if not exists tickets | ||
( | ||
ticket_id int auto_increment primary key, | ||
cid int, | ||
flight_id int, | ||
seat_id int, | ||
price int(4) | ||
); | ||
|
||
CREATE table if not exists vip | ||
( | ||
vip_id int auto_increment primary key, | ||
cid int, | ||
travel_distance int, | ||
points_left int | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
DROP table customers; | ||
DROP table airports; | ||
DROP table airplanes; | ||
DROP table flights; | ||
DROP table tickets; | ||
DROP table vip; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
<?php | ||
// start session | ||
if (!isset($_SESSION)) | ||
{ | ||
session_start(); | ||
} | ||
?> | ||
|
||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
|
||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<?php include 'section/Head.php'; ?> | ||
</head> | ||
<body> | ||
<!-- start header --> | ||
<div id="header"> | ||
<?php include 'section/Header.php'; ?> | ||
</div> | ||
<!-- end header --> | ||
<!-- star menu --> | ||
<div id="menu"> | ||
<ul> | ||
<?php include 'section/Menu.php'; ?> | ||
</ul> | ||
</div> | ||
<!-- end menu --> | ||
<!-- start page --> | ||
<div id="page"> | ||
|
||
<body> | ||
<div style= "width:430px; margin:0 auto;"> <!--"text-align:center;"> --> | ||
<a name="top"></a> | ||
<h1 style="margin-bottom:0;"> Frequently Asked Questions </h1> </div> | ||
<br /> | ||
|
||
<a href="#makeAccount">How do I make an account?</a> <br /> | ||
<a href="#whyAccount">What is the benefit of making an account?</a> <br /> | ||
<a href="#cancel">Can i cancel my Flight without a fee?</a> <br /> | ||
<a href="#protected">How is my privacy protected?</a> <br /> | ||
<a href="#upgrade">How do I upgrade my Account to VIP?</a> <br /> | ||
<a href="#forgotPassword">What if I forgot my Password?</a> <br /> | ||
<a href="#seat">How do I choose my seat?</a> <br /> | ||
|
||
|
||
<a name="makeAccount"></a> | ||
<h2> Make an Account </h2> | ||
<p> | ||
To make an Account locate the Sign-up button at the top right corner of the home page. <br /> | ||
The page will lead you through the steps on creating your own account with us. | ||
</p> | ||
<a href="#top">Back to Top </a> <br /> | ||
|
||
<a name="whyAccount"></a> | ||
<h2> Why have an Account? </h2> | ||
<p> | ||
Some benfits to having an account would be not having to have to reinsert your credit <br /> | ||
card information everytime you book a flight. You will earn flier milage that can lead <br /> | ||
to discount on future flights. Without making an account you cannot collect these discounts. | ||
</p> | ||
<a href="#top">Back to Top </a> <br /> | ||
|
||
<a name="cancel"></a> | ||
<h2> Can I cancel my flight without a fee? </h2> | ||
|
||
<p> | ||
You may cancel any flight at any time 24 hours before your flight without penalty. If 24 <br /> | ||
hours or less remain you will recieve half of your payment back. If 6 hours or less remain <br /> | ||
no reinbursment will be available. | ||
</p> | ||
<a href="#top">Back to Top </a> <br /> | ||
|
||
<a name="protected"></a> | ||
<h2>How is my privacy protected?</h2> | ||
<p> | ||
Your passwords, emails,credit card information, and any personal information given will be <br /> | ||
encrypted. You are safe with us. | ||
</p> | ||
<a href="#top">Back to Top </a> <br /> | ||
|
||
<a name="upgrade"></a> | ||
<h2>How do I upgrade my Account to VIP?</h2> | ||
<p> | ||
When you reach frequent flier status you will be given the option to upgrade to VIP. To reach <br /> | ||
Frequent Flier status you have to book a flight at least once a month for a year to be eligable. | ||
</p> | ||
<a href="#top">Back to Top </a> <br /> | ||
|
||
<a name="forgotPassword"></a> | ||
<h2>What if I forgot my Password</h2> | ||
<p> | ||
There will be an option to make a new password under the "Forgot Password" link. To make sure <br /> | ||
not just anyone can change your password, you will be sent an email to your email address that <br /> | ||
is linked to your account. | ||
</p> | ||
<a href="#top">Back to Top </a> <br /> | ||
|
||
<a name="seat"></a> | ||
<h2>How do I choose my seat?</h2> | ||
<p> | ||
Once you fill in your flight information on the home page you will be lead to the diagram of the <br /> | ||
plane that will take you to your destination and back if round trip. Click on the diagram where you<br /> | ||
would like to sit. Some seats marked in red will not be available. | ||
</p> | ||
<a href="#top">Back to Top </a> <br /> | ||
</div> | ||
</body> | ||
</div> | ||
<!-- end content --> | ||
|
||
<div id="extra" style="clear: both;"> </div> | ||
</div> | ||
<!-- end page --> | ||
<!-- start footer --> | ||
<div id="footer"> | ||
<?php include 'section/Footer.php'; ?> | ||
</div> | ||
<!-- end footer --> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
|
||
<?php | ||
// Start session | ||
if (!isset($_SESSION)) | ||
{ | ||
session_start(); | ||
} | ||
|
||
|
||
?> | ||
|
||
|
||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
|
||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<?php include 'section/Head.php'; ?> | ||
</head> | ||
<body> | ||
<!-- start header --> | ||
<div id="header"> | ||
<?php include 'section/Header.php'; ?> | ||
</div> | ||
<!-- end header --> | ||
<!-- star menu --> | ||
<div id="menu"> | ||
<ul> | ||
<?php include 'section/Menu.php'; ?> | ||
</ul> | ||
</div> | ||
<!-- end menu --> | ||
<!-- start page --> | ||
<div id="page"> | ||
|
||
<body> | ||
<div style= "width:430px; margin:0 auto;"> <!--"text-align:center;"> --> | ||
<form action=""> | ||
Username : <input type="text" name="username" /><br /> | ||
Password  : <input type="password" name="password" /><br> | ||
<input type="submit" value="Submit"> | ||
</form> | ||
</div> | ||
</body> | ||
|
||
|
||
</div> | ||
<!-- end content --> | ||
|
||
<div id="extra" style="clear: both;"> </div> | ||
</div> | ||
<!-- end page --> | ||
<!-- start footer --> | ||
<div id="footer"> | ||
<?php include 'section/Footer.php'; ?> | ||
</div> | ||
<!-- end footer --> | ||
</body> | ||
</html> |
Oops, something went wrong.