在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 图书馆选座系统

图书馆选座系统

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:2.16M
  • 下载次数:3
  • 浏览次数:196
  • 发布时间:2020-09-18
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
其实是我们的课程设计啦。使用了xampp。 使用html和php。 由于是分工做的,所以每个人做了的html跟php都没有跟框架放在一起。使用时请先将ks压缩包里的内容分别放置于seat\application\index目录下的controller和view目录中。
【实例截图】
【核心代码】
seat
├── KS_BOOK-master.rar
└── seat
├── 1.jpg
├── app.js
├── application
│   ├── command.php
│   ├── common
│   │   ├── common
│   │   │   └── model
│   │   │   ├── Tbdesk.php
│   │   │   ├── Tborderhistory.php
│   │   │   └── Tbuser.php
│   │   └── model
│   │   ├── Login.php
│   │   ├── Tbdesk.php
│   │   ├── Tborderhistory.php
│   │   └── Tbuser.php
│   ├── common.php
│   ├── config.php
│   ├── database.php
│   ├── index
│   │   ├── controller
│   │   │   ├── BuildingController.php
│   │   │   ├── FloorController.php
│   │   │   ├── IndexController.php
│   │   │   ├── InformationController.php
│   │   │   ├── LoginController.php
│   │   │   ├── Login.php
│   │   │   ├── ShowController.php
│   │   │   ├── Student1Controller.php
│   │   │   ├── StudentController.php
│   │   │   └── TbuserController.php
│   │   └── view
│   │   ├── Building
│   │   │   └── building.html
│   │   ├── c
│   │   │   └── show.html
│   │   ├── Floor
│   │   │   └── floor.html
│   │   ├── Index
│   │   │   └── index.html
│   │   ├── Login
│   │   │   ├── css
│   │   │   │   └── style.css
│   │   │   ├── images
│   │   │   │   └── banner.jpg
│   │   │   └── index.html
│   │   └── Student
│   │   ├── add.html
│   │   ├── choose.html
│   │   ├── index.html
│   │   └── student.html
│   ├── login
│   │   ├── controller
│   │   │   ├── IndexController.php
│   │   │   ├── Index.php
│   │   │   ├── LoginController.php
│   │   │   ├── Login.php
│   │   │   └── TbuserController.php
│   │   └── view
│   │   └── Login
│   │   ├── css
│   │   │   └── style.css
│   │   ├── images
│   │   │   └── banner.jpg
│   │   └── index.html
│   ├── route.php
│   └── tags.php
├── build.php
├── composer.json
├── CONTRIBUTING.md
├── extend
├── index.html
├── LICENSE.txt
├── public
│   ├── css
│   │   ├── bootstrap.css
│   │   ├── bootstrap.css.map
│   │   ├── bootstrap.min.css
│   │   ├── bootstrap.min.css.map
│   │   ├── bootstrap-theme.css
│   │   ├── bootstrap-theme.css.map
│   │   ├── bootstrap-theme.min.css
│   │   ├── bootstrap-theme.min.css.map
│   │   └── jquery-ui.min.css
│   ├── favicon.ico
│   ├── fonts
│   │   ├── glyphicons-halflings-regular.eot
│   │   ├── glyphicons-halflings-regular.svg
│   │   ├── glyphicons-halflings-regular.ttf
│   │   ├── glyphicons-halflings-regular.woff
│   │   └── glyphicons-halflings-regular.woff2
│   ├── images
│   │   ├── 1.jpg
│   │   └── banner.jpg
│   ├── index.php
│   ├── js
│   │   ├── angular.js
│   │   ├── angular.min.js
│   │   ├── angular-resource.min.js
│   │   ├── angular-route.js
│   │   ├── angular-route.min.js
│   │   ├── angular-ui-router.min.js
│   │   ├── bootstrap.js
│   │   ├── bootstrap.min.js
│   │   ├── jquery-3.2.1.min.js
│   │   ├── jquery-ui.min.js
│   │   └── npm.js
│   ├── robots.txt
│   ├── router.php
│   └── static
│   └── bootstrap-3.3.7-dist
│   ├── css
│   │   ├── bootstrap.css
│   │   ├── bootstrap.css.map
│   │   ├── bootstrap.min.css
│   │   ├── bootstrap.min.css.map
│   │   ├── bootstrap-theme.css
│   │   ├── bootstrap-theme.css.map
│   │   ├── bootstrap-theme.min.css
│   │   └── bootstrap-theme.min.css.map
│   ├── fonts
│   │   ├── glyphicons-halflings-regular.eot
│   │   ├── glyphicons-halflings-regular.svg
│   │   ├── glyphicons-halflings-regular.ttf
│   │   ├── glyphicons-halflings-regular.woff
│   │   └── glyphicons-halflings-regular.woff2
│   └── js
│   ├── bootstrap.js
│   ├── bootstrap.min.js
│   └── npm.js
├── README.md
├── runtime
│   ├── log
│   │   ├── 201712
│   │   │   ├── 29.log
│   │   │   ├── 30.log
│   │   │   └── 31.log
│   │   └── 201801
│   │   ├── 01.log
│   │   ├── 02.log
│   │   ├── 03.log
│   │   ├── 04.log
│   │   ├── 05.log
│   │   ├── 08.log
│   │   ├── 09.log
│   │   ├── 10.log
│   │   ├── 11.log
│   │   ├── 12.log
│   │   ├── 13.log
│   │   ├── 15.log
│   │   └── 17.log
│   └── temp
│   ├── 2d0c270ce09a3543c441fd881fef15e5.php
│   ├── 40ae507f3c7e1c167c2a7d0733849f0f.php
│   ├── 4f502ea32965f2c4e6977b71425ac77d.php
│   ├── 8056d26972a7e1a8ec9652f2a20222c0.php
│   ├── 909a8dcf026ddd2383586a956097bcff.php
│   ├── 923a8802747dabb0dcef9b70eeb39b0d.php
│   ├── 93a21ba70eac0345100741935f2f07f8.php
│   ├── a30af9e6dded1aa94dde50d8a2ce42e1.php
│   ├── d66de7f74c03d62a780fb65441290c39.php
│   └── ec8fade8982dbb5e336c249801525503.php
├── test.html
├── think
├── thinkphp
│   ├── base.php
│   ├── codecov.yml
│   ├── composer.json
│   ├── console.php
│   ├── CONTRIBUTING.md
│   ├── convention.php
│   ├── helper.php
│   ├── lang
│   │   └── zh-cn.php
│   ├── library
│   │   ├── think
│   │   │   ├── App.php
│   │   │   ├── Build.php
│   │   │   ├── cache
│   │   │   │   ├── driver
│   │   │   │   │   ├── File.php
│   │   │   │   │   ├── Lite.php
│   │   │   │   │   ├── Memcached.php
│   │   │   │   │   ├── Memcache.php
│   │   │   │   │   ├── Redis.php
│   │   │   │   │   ├── Sqlite.php
│   │   │   │   │   ├── Wincache.php
│   │   │   │   │   └── Xcache.php
│   │   │   │   └── Driver.php
│   │   │   ├── Cache.php
│   │   │   ├── Collection.php
│   │   │   ├── config
│   │   │   │   └── driver
│   │   │   │   ├── Ini.php
│   │   │   │   ├── Json.php
│   │   │   │   └── Xml.php
│   │   │   ├── Config.php
│   │   │   ├── console
│   │   │   │   ├── bin
│   │   │   │   │   ├── hiddeninput.exe
│   │   │   │   │   └── README.md
│   │   │   │   ├── command
│   │   │   │   │   ├── Build.php
│   │   │   │   │   ├── Clear.php
│   │   │   │   │   ├── Help.php
│   │   │   │   │   ├── Lists.php
│   │   │   │   │   ├── make
│   │   │   │   │   │   ├── Controller.php
│   │   │   │   │   │   ├── Model.php
│   │   │   │   │   │   └── stubs
│   │   │   │   │   │   ├── controller.plain.stub
│   │   │   │   │   │   ├── controller.stub
│   │   │   │   │   │   └── model.stub
│   │   │   │   │   ├── Make.php
│   │   │   │   │   └── optimize
│   │   │   │   │   ├── Autoload.php
│   │   │   │   │   ├── Config.php
│   │   │   │   │   └── Route.php
│   │   │   │   ├── Command.php
│   │   │   │   ├── input
│   │   │   │   │   ├── Argument.php
│   │   │   │   │   ├── Definition.php
│   │   │   │   │   └── Option.php
│   │   │   │   ├── Input.php
│   │   │   │   ├── LICENSE
│   │   │   │   ├── output
│   │   │   │   │   ├── Ask.php
│   │   │   │   │   ├── descriptor
│   │   │   │   │   │   └── Console.php
│   │   │   │   │   ├── Descriptor.php
│   │   │   │   │   ├── driver
│   │   │   │   │   │   ├── Buffer.php
│   │   │   │   │   │   ├── Console.php
│   │   │   │   │   │   └── Nothing.php
│   │   │   │   │   ├── formatter
│   │   │   │   │   │   ├── Stack.php
│   │   │   │   │   │   └── Style.php
│   │   │   │   │   ├── Formatter.php
│   │   │   │   │   ├── question
│   │   │   │   │   │   ├── Choice.php
│   │   │   │   │   │   └── Confirmation.php
│   │   │   │   │   └── Question.php
│   │   │   │   └── Output.php
│   │   │   ├── Console.php
│   │   │   ├── controller
│   │   │   │   ├── Rest.php
│   │   │   │   └── Yar.php
│   │   │   ├── Controller.php
│   │   │   ├── Cookie.php
│   │   │   ├── db
│   │   │   │   ├── builder
│   │   │   │   │   ├── Mysql.php
│   │   │   │   │   ├── Pgsql.php
│   │   │   │   │   ├── Sqlite.php
│   │   │   │   │   └── Sqlsrv.php
│   │   │   │   ├── Builder.php
│   │   │   │   ├── Connection.php
│   │   │   │   ├── connector
│   │   │   │   │   ├── Mysql.php
│   │   │   │   │   ├── Pgsql.php
│   │   │   │   │   ├── pgsql.sql
│   │   │   │   │   ├── Sqlite.php
│   │   │   │   │   └── Sqlsrv.php
│   │   │   │   ├── exception
│   │   │   │   │   ├── BindParamException.php
│   │   │   │   │   ├── DataNotFoundException.php
│   │   │   │   │   └── ModelNotFoundException.php
│   │   │   │   └── Query.php
│   │   │   ├── Db.php
│   │   │   ├── debug
│   │   │   │   ├── Console.php
│   │   │   │   └── Html.php
│   │   │   ├── Debug.php
│   │   │   ├── Env.php
│   │   │   ├── Error.php
│   │   │   ├── exception
│   │   │   │   ├── ClassNotFoundException.php
│   │   │   │   ├── DbException.php
│   │   │   │   ├── ErrorException.php
│   │   │   │   ├── Handle.php
│   │   │   │   ├── HttpException.php
│   │   │   │   ├── HttpResponseException.php
│   │   │   │   ├── PDOException.php
│   │   │   │   ├── TemplateNotFoundException.php
│   │   │   │   ├── ThrowableError.php
│   │   │   │   └── ValidateException.php
│   │   │   ├── Exception.php
│   │   │   ├── File.php
│   │   │   ├── Hook.php
│   │   │   ├── Lang.php
│   │   │   ├── Loader.php
│   │   │   ├── log
│   │   │   │   └── driver
│   │   │   │   ├── File.php
│   │   │   │   ├── Socket.php
│   │   │   │   └── Test.php
│   │   │   ├── Log.php
│   │   │   ├── model
│   │   │   │   ├── Merge.php
│   │   │   │   ├── Pivot.php
│   │   │   │   └── Relation.php
│   │   │   ├── Model.php
│   │   │   ├── paginator
│   │   │   │   ├── Collection.php
│   │   │   │   └── driver
│   │   │   │   └── Bootstrap.php
│   │   │   ├── Paginator.php
│   │   │   ├── process
│   │   │   │   ├── Builder.php
│   │   │   │   ├── exception
│   │   │   │   │   ├── Faild.php
│   │   │   │   │   └── Timeout.php
│   │   │   │   ├── pipes
│   │   │   │   │   ├── Pipes.php
│   │   │   │   │   ├── Unix.php
│   │   │   │   │   └── Windows.php
│   │   │   │   └── Utils.php
│   │   │   ├── Process.php
│   │   │   ├── Request.php
│   │   │   ├── response
│   │   │   │   ├── Json.php
│   │   │   │   ├── Jsonp.php
│   │   │   │   ├── Redirect.php
│   │   │   │   ├── View.php
│   │   │   │   └── Xml.php
│   │   │   ├── Response.php
│   │   │   ├── Route.php
│   │   │   ├── session
│   │   │   │   └── driver
│   │   │   │   ├── Memcached.php
│   │   │   │   ├── Memcache.php
│   │   │   │   └── Redis.php
│   │   │   ├── Session.php
│   │   │   ├── template
│   │   │   │   ├── driver
│   │   │   │   │   └── File.php
│   │   │   │   ├── taglib
│   │   │   │   │   └── Cx.php
│   │   │   │   └── TagLib.php
│   │   │   ├── Template.php
│   │   │   ├── Url.php
│   │   │   ├── Validate.php
│   │   │   ├── view
│   │   │   │   └── driver
│   │   │   │   ├── Php.php
│   │   │   │   └── Think.php
│   │   │   └── View.php
│   │   └── traits
│   │   ├── controller
│   │   │   └── Jump.php
│   │   ├── model
│   │   │   └── SoftDelete.php
│   │   └── think
│   │   └── Instance.php
│   ├── LICENSE.txt
│   ├── logo.png
│   ├── phpunit.xml
│   ├── README.md
│   ├── start.php
│   └── tpl
│   ├── default_index.tpl
│   ├── dispatch_jump.tpl
│   ├── page_trace.tpl
│   └── think_exception.tpl
├── vendor
└── view
├── add.html
├── index.html
└── show.html

89 directories, 281 files

标签:

实例下载地址

图书馆选座系统

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警