php学生记录系统

此项目是PHP中的学生记录系统。使用的技术有PHP 5.6,MYSQL,HTML,CSS,JAVASCRIPT,JQUERY,AJAX。项目特色有课程创建(添加,编辑和删除)、课程与科目组合(添加,编辑和删除)、学生注册、管理学生(查看,编辑和删除)、登录、注销。即将推出的功能有管理员个人资料、管理员更改密码、记住我的选项、忘记密码。附件有更加详细的代码,敬请下载。

应用介绍

此项目是学生记录系统。使用的技术有PHP 5.6,MYSQL,HTML,CSS,JAVASCRIPT,JQUERY,AJAX。项目特色有课程创建(添加,编辑和删除)、课程与科目组合(添加,编辑和删除)、学生注册、管理学生(查看,编辑和删除)、登录、注销。本人只展示了一小部分的代码,如想了解详情请点击下方链接下载附件。

<?php
class Database {
 private $_connection;
 private static $_instance; //The single instance
 private $_host = "localhost";
 private $_username = "root";
 private $_password = "";
 private $_database = "schoolmanagement";
 /*
 Get an instance of the Database
 @return Instance
 */
 public static function getInstance() {
  if(!self::$_instance) { // If no instance then make one
   self::$_instance = new self();
  }
  return self::$_instance;
 }
 // Constructor
 public function __construct() {
  $this->_connection = new mysqli($this->_host, $this->_username, $this->_password, $this->_database);
 
  // Error handling
  if(mysqli_connect_error()) {
   trigger_error("Failed to conencto to MySQL: " . mysqli_connect_error(),
     E_USER_ERROR);
  }
 }
 // Magic method clone is empty to prevent duplication of connection
 private function __clone() { }
 // Get mysqli connection
 public function getConnection() {
  return $this->_connection;
 }
}

?>

文件列表(部分)

名称 大小 修改日期
schoolmanagement0.00 KB2019-05-30
schoolmanagement0.00 KB2018-11-38
bower_components0.00 KB2018-11-38
bootstrap0.00 KB2018-11-20
.bower.json0.90 KB2016-04-10
bower.json0.63 KB2016-04-10
CHANGELOG.md0.42 KB2016-04-12
dist0.00 KB2018-11-18
css0.00 KB2018-11-18
bootstrap-theme.css25.52 KB2016-04-14
bootstrap-theme.css.map46.59 KB2016-04-14
bootstrap-theme.min.css22.86 KB2016-04-14
bootstrap-theme.min.css.map5.40 KB2016-04-14
bootstrap.css142.66 KB2016-04-14
bootstrap.css.map380.10 KB2016-04-14
bootstrap.min.css118.42 KB2016-04-14
bootstrap.min.css.map53.14 KB2016-04-16
fonts0.00 KB2018-11-18
glyphicons-halflings-regular.eot19.66 KB2016-04-18
glyphicons-halflings-regular.svg106.19 KB2016-04-18
glyphicons-halflings-regular.ttf44.34 KB2016-04-18
glyphicons-halflings-regular.woff22.88 KB2016-04-18
glyphicons-halflings-regular.woff217.61 KB2016-04-20
js0.00 KB2018-11-18
bootstrap.js67.34 KB2016-04-26
bootstrap.min.js36.00 KB2016-04-28
npm.js0.47 KB2016-04-28
fonts0.00 KB2018-11-18
glyphicons-halflings-regular.eot19.66 KB2016-04-28
glyphicons-halflings-regular.svg106.19 KB2016-04-28
glyphicons-halflings-regular.ttf44.34 KB2016-04-28
glyphicons-halflings-regular.woff22.88 KB2016-04-28

立即下载

相关下载

[php学生记录系统] 此项目是PHP中的学生记录系统。使用的技术有PHP 5.6,MYSQL,HTML,CSS,JAVASCRIPT,JQUERY,AJAX。项目特色有课程创建(添加,编辑和删除)、课程与科目组合(添加,编辑和删除)、学生注册、管理学生(查看,编辑和删除)、登录、注销。即将推出的功能有管理员个人资料、管理员更改密码、记住我的选项、忘记密码。附件有更加详细的代码,敬请下载。
[C学生记录系统] 这个项目 它使用文件作为数据库来执行文件处理操作,例如添加,搜索,修改和删除记录以管理学生的记录,还可以为学生生成评分表。在这里,控制台窗口实际上分为两部分-一个是静态的,它不会改变,而另一个是动态的,它会不时改变。 使用与颜色相关的各种功能对文本进行编码,以使它们静态。

评论列表 共有 1 条评论

暂无评论

微信捐赠

微信扫一扫体验

立即
上传
发表
评论
返回
顶部