├── admin
├── hello.php
├── airlcnt.php
├── psngrcnt.php
├── flightscnt.php
├── amtcnt.php
├── footer.php
├── review.php
├── list_airlines.php
├── all_flights.php
├── pass_list.php
├── login.php
├── header.php
├── flight.php
└── index.php
├── helpers
├── hello.php
├── helper.php
└── init_conn_db.php
├── includes
├── hello.php
├── logout.inc.php
├── feedback.inc.php
├── login.inc.php
├── reset-request.inc.php
├── pass_detail.inc.php
├── reset-password.inc.php
├── register.inc.php
└── payment.inc.php
├── DATABASE FILE
├── hello.db
└── ofbsphp.sql
├── README.md
├── reset-pwd.php
├── create-new-pwd.php
├── pay_success.php
├── pass_form.php
├── book_flight.php
├── login.php
├── register.php
├── feedback.php
├── payment.php
├── my_flights.php
├── e_ticket.php
├── ticket.php
└── index.php
/admin/hello.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/helpers/hello.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/includes/hello.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/DATABASE FILE/hello.db:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/helpers/helper.php:
--------------------------------------------------------------------------------
1 | query($sql);
11 |
12 | echo "$query->num_rows";
13 | ?>
--------------------------------------------------------------------------------
/admin/psngrcnt.php:
--------------------------------------------------------------------------------
1 | query($sql);
11 |
12 | echo "$query->num_rows";
13 | ?>
--------------------------------------------------------------------------------
/admin/flightscnt.php:
--------------------------------------------------------------------------------
1 | query($sql);
11 |
12 | echo "$query->num_rows";
13 | ?>
--------------------------------------------------------------------------------
/helpers/init_conn_db.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Flight-Ticket-Booking
2 | The Flight Ticket Booking is a website project creates using HTML,CSS and PHP.
3 | This is the link to the site https://flightticketbooking101.000webhostapp.com/
4 |
5 |