【例子介绍】简单的图书管理系统(PHP源码)
【源码结构】.
└── 4. 简单的图书管理系统
├── add.html
├── addBook.php
├── css
│ └── bootstrap.css
├── database
│ ├── database.sql
│ └── readme.txt
├── deleteBook.php
├── edit.html
├── editBook.php
├── index.php
├── lists.html
├── public
│ ├── css
│ │ ├── bootstrap-datetimepicker.css
│ │ ├── bootstrap.css
│ │ ├── fullcalendar.css
│ │ ├── fullcalendar.min.css
│ │ └── fullcalendar.print.min.css
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ └── js
│ ├── bootstrap-datetimepicker.js
│ ├── bootstrap.min.js
│ ├── fullcalendar.min.js
│ ├── jquery-ui.js
│ ├── jquery.form.min.js
│ ├── jquery.min.js
│ ├── moment-with-locales.js
│ ├── moment.js
│ └── moment.min.js
└── updateBook.php
7 directories, 30 files
评论