在好例子网,分享、交流、成长!
您当前所在位置:首页PHP 开发实例PHP语言基础 → 基于b/s技术的PHP的选课系统源码和毕业设计论文

基于b/s技术的PHP的选课系统源码和毕业设计论文

PHP语言基础

下载此实例
  • 开发语言:PHP
  • 实例大小:0.33M
  • 下载次数:6
  • 浏览次数:16
  • 发布时间:2023-12-01
  • 实例类别:PHP语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.rar
  • 所需积分:2
 相关标签: 毕业设计 系统源码 php 设计 hp

实例介绍

【实例简介】基于b/s技术的PHP的选课系统源码和毕业设计论文
本文以一个具体的应用系统—学生选课信息系统的设计与实现来说明如何利用b/s技术和php技术来设计和构建web应用。b/s技术技术的使用能提高开发效率,增加系统的易维护性。并用到了以 thinkPHP为基础的框架编程技术和以...

【实例截图】

from clipboard

【核心代码】

.
├── 基于bs技术的PHP的选课系统源码和毕业设计论文_李勇毕业设计及论文.rar
└── 李勇毕业设计及论文
    ├── Public
    │   ├── css
    │   │   ├── admin.css
    │   │   ├── index.css
    │   │   ├── install.css
    │   │   └── page.css
    │   ├── image
    │   │   ├── Thumbs.db
    │   │   ├── fade-butt.png
    │   │   ├── h2Bg.gif
    │   │   ├── image1.gif
    │   │   ├── image2.gif
    │   │   ├── meneame.jpg
    │   │   ├── menuBg1.gif
    │   │   ├── menuBg2.gif
    │   │   └── searchBg.gif
    │   └── js
    │       ├── jquery.js
    │       ├── js.js
    │       └── js2.js
    ├── ThinkPHP
    │   ├── Common
    │   │   ├── alias.php
    │   │   ├── compat.php
    │   │   ├── convention.php
    │   │   ├── core.php
    │   │   ├── debug.php
    │   │   ├── defines.php
    │   │   ├── extend.php
    │   │   ├── functions.php
    │   │   ├── paths.php
    │   │   └── runtime.php
    │   ├── LICENSE.txt
    │   ├── Lang
    │   │   └── zh-cn.php
    │   ├── Lib
    │   │   ├── ORG
    │   │   │   └── Util
    │   │   │       └── Page.class.php
    │   │   └── Think
    │   │       ├── Core
    │   │       │   ├── Action.class.php
    │   │       │   ├── App.class.php
    │   │       │   ├── Log.class.php
    │   │       │   ├── Model
    │   │       │   │   ├── AdvModel.class.php
    │   │       │   │   ├── RelationModel.class.php
    │   │       │   │   └── ViewModel.class.php
    │   │       │   ├── Model.class.php
    │   │       │   ├── Think.class.php
    │   │       │   └── View.class.php
    │   │       ├── Db
    │   │       │   ├── Db.class.php
    │   │       │   └── Driver
    │   │       │       ├── DbMysql.class.php
    │   │       │       └── DbMysqli.class.php
    │   │       ├── Exception
    │   │       │   └── ThinkException.class.php
    │   │       ├── Template
    │   │       │   ├── TagLib
    │   │       │   │   └── TagLibCx.class.php
    │   │       │   ├── TagLib.class.php
    │   │       │   ├── Tags
    │   │       │   │   └── cx.xml
    │   │       │   └── ThinkTemplate.class.php
    │   │       └── Util
    │   │           ├── Behavior.class.php
    │   │           ├── Cache
    │   │           │   └── CacheFile.class.php
    │   │           ├── Cache.class.php
    │   │           ├── Cookie.class.php
    │   │           ├── Debug.class.php
    │   │           ├── Dispatcher.class.php
    │   │           ├── HtmlCache.class.php
    │   │           ├── Session.class.php
    │   │           ├── Template
    │   │           │   ├── TemplateSmarty.class.php
    │   │           │   └── TemplateThink.class.php
    │   │           └── Widget.class.php
    │   ├── Mode
    │   │   ├── Cli
    │   │   │   ├── Action.class.php
    │   │   │   ├── App.class.php
    │   │   │   └── alias.php
    │   │   ├── Lite
    │   │   │   ├── Action.class.php
    │   │   │   ├── App.class.php
    │   │   │   ├── Db.class.php
    │   │   │   ├── Dispatcher.class.php
    │   │   │   ├── Model.class.php
    │   │   │   └── alias.php
    │   │   ├── Thin
    │   │   │   ├── Action.class.php
    │   │   │   ├── App.class.php
    │   │   │   ├── Db.class.php
    │   │   │   ├── Model.class.php
    │   │   │   └── alias.php
    │   │   ├── cli.php
    │   │   ├── lite.php
    │   │   └── thin.php
    │   ├── ThinkPHP.php
    │   ├── Tpl
    │   │   ├── PageTrace.tpl.php
    │   │   └── ThinkException.tpl.php
    │   └── Vendor
    ├── database.sql
    ├── index.php
    ├── myapp
    │   ├── Common
    │   ├── Conf
    │   │   ├── config.php
    │   │   └── install_config.php
    │   ├── Lang
    │   ├── Lib
    │   │   ├── Action
    │   │   │   ├── Admin
    │   │   │   │   └── IndexAction.class.php
    │   │   │   └── Home
    │   │   │       └── IndexAction.class.php
    │   │   └── Model
    │   ├── Runtime
    │   │   ├── Cache
    │   │   │   ├── Admin
    │   │   │   │   ├── 1479cd4c4f889b0456f4a002a8d2d03e.php
    │   │   │   │   ├── 34a05e74dd57991ece19ba9fcd2a152c.php
    │   │   │   │   ├── 3f71e011530e8e9d0b27861e43c37708.php
    │   │   │   │   ├── 5174d7f2bfa8f5d66a8b8453617eda04.php
    │   │   │   │   ├── 52c7120fce81f861f2a9d64e93733d9e.php
    │   │   │   │   ├── 590fb7ed5fe999a8f4bac9f6f0361148.php
    │   │   │   │   ├── 8259134e6e095a9983e22379248891b6.php
    │   │   │   │   ├── 825dd937dd2540caa1c5d4321d8720a9.php
    │   │   │   │   ├── ad05197cb7e1fb80bf328d22c7e9a3eb.php
    │   │   │   │   ├── c32880520e7b1e5592986f970b1f6106.php
    │   │   │   │   ├── c69b32887fb955bfb2b49521707173a1.php
    │   │   │   │   └── d60d40f2b5e3b569aa8dc0feca66551c.php
    │   │   │   └── Home
    │   │   │       ├── 004603dc4648cc59048d8a158196b055.php
    │   │   │       ├── 0133bcf8ccea3c61f9b95c0bcb11eef3.php
    │   │   │       ├── 0b880d085faa14952205a60ad10201b6.php
    │   │   │       ├── 0c00223a37851af9faa696f1c6801148.php
    │   │   │       ├── 174047d7abc60ce74952bad8ed20d93a.php
    │   │   │       ├── 2a706d872e7ad1d5d2b673c44cbcd777.php
    │   │   │       ├── 34a05e74dd57991ece19ba9fcd2a152c.php
    │   │   │       ├── 3f71e011530e8e9d0b27861e43c37708.php
    │   │   │       ├── 5c9403efddd1ea70599f913a8be1b854.php
    │   │   │       ├── 7a910c38ed3c2f4430a85f78b8c5b5cd.php
    │   │   │       ├── 8e7b08efd7bc685507fd15bae45a686e.php
    │   │   │       ├── 99ef4fc554676c5c7ac985d3041a1b8d.php
    │   │   │       ├── ab0ffb1b2158e76ba7b63f32c0812361.php
    │   │   │       ├── b776edddb69413cf889fb8f7970ae657.php
    │   │   │       └── dfd7daee3724e0db351d97ca6da2a265.php
    │   │   ├── Data
    │   │   │   └── _fields
    │   │   │       ├── Admin.php
    │   │   │       ├── Course.php
    │   │   │       ├── Selected.php
    │   │   │       ├── Student.php
    │   │   │       └── Teacher.php
    │   │   ├── Logs
    │   │   │   ├── 10_03_23.log
    │   │   │   └── 10_03_25.log
    │   │   ├── Temp
    │   │   ├── ~app.php
    │   │   └── ~runtime.php
    │   └── Tpl
    │       └── default
    │           ├── Admin
    │           │   └── Index
    │           │       ├── admin.html
    │           │       ├── editPassword.html
    │           │       ├── editStuInfo.html
    │           │       ├── editTeacInfo.html
    │           │       ├── importStuInfo.html
    │           │       ├── importTeacInfo.html
    │           │       ├── login.html
    │           │       ├── manageStuInfo.html
    │           │       ├── manageTeacInfo.html
    │           │       └── siteinfo.html
    │           ├── Home
    │           │   └── Index
    │           │       ├── editCourse.html
    │           │       ├── editStuPassword.html
    │           │       ├── editTeacPassword.html
    │           │       ├── exportCourse.html
    │           │       ├── listCourse.html
    │           │       ├── login.html
    │           │       ├── manageCourse.html
    │           │       ├── publishCourse.html
    │           │       ├── selectedCourse.html
    │           │       ├── student.html
    │           │       ├── student_page.html
    │           │       ├── teacher.html
    │           │       └── teacher_page.html
    │           └── Public
    │               ├── error.html
    │               └── success.html
    ├── 论文.doc
    └── 基于bs技术选课系统.txt

53 directories, 147 files


实例下载地址

基于b/s技术的PHP的选课系统源码和毕业设计论文

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警