FloydHsiu / Restaurant_Reservation_System

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#Restaurant_reservation_system


use PHP CodeIgniter Web Framework
此專案由張修齊、鄭皓宇、蔡至朔共同開發

###Application/config


Before using this you need to change some options here.

  • database.php
  • routes.php

###DB Structure


####Account:

  • id int auto_increment not null
  • email varchar(40) not null
  • passwd varchar(40) not null
  • name varchar(20)
  • phonenum varchar(15)
  • permission int not null

####Menu:

  • id int auto_increment not null
  • menuname varchar(50) not null
  • price int not null
  • menu_img text not null

####Reservation:

  • id int auto_increment not null
  • uid int not null
  • name varchar(20)
  • phonenum varchar(15)
  • seatnum int not null
  • timeid int not null
  • food varchar(300)

####Seat:

  • id int auto_increment not null
  • date_ date
  • time_ int
  • empty int

About

License:MIT License


Languages

Language:HTML 81.4%Language:PHP 17.8%Language:JavaScript 0.6%Language:CSS 0.1%Language:ApacheConf 0.0%