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;
}
}
?>
©版权声明:本文内容由互联网用户自发贡献,版权归原创作者所有,本站不拥有所有权,也不承担相关法律责任。如果您发现本站中有涉嫌抄袭的内容,欢迎发送邮件至: www_apollocode_net@163.com 进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。
转载请注明出处: apollocode » php学生记录系统
文件列表(部分)
名称 | 大小 | 修改日期 |
---|---|---|
schoolmanagement | 0.00 KB | 2019-05-30 |
schoolmanagement | 0.00 KB | 2018-11-38 |
bower_components | 0.00 KB | 2018-11-38 |
bootstrap | 0.00 KB | 2018-11-20 |
.bower.json | 0.90 KB | 2016-04-10 |
bower.json | 0.63 KB | 2016-04-10 |
CHANGELOG.md | 0.42 KB | 2016-04-12 |
dist | 0.00 KB | 2018-11-18 |
css | 0.00 KB | 2018-11-18 |
bootstrap-theme.css | 25.52 KB | 2016-04-14 |
bootstrap-theme.css.map | 46.59 KB | 2016-04-14 |
bootstrap-theme.min.css | 22.86 KB | 2016-04-14 |
bootstrap-theme.min.css.map | 5.40 KB | 2016-04-14 |
bootstrap.css | 142.66 KB | 2016-04-14 |
bootstrap.css.map | 380.10 KB | 2016-04-14 |
bootstrap.min.css | 118.42 KB | 2016-04-14 |
bootstrap.min.css.map | 53.14 KB | 2016-04-16 |
fonts | 0.00 KB | 2018-11-18 |
glyphicons-halflings-regular.eot | 19.66 KB | 2016-04-18 |
glyphicons-halflings-regular.svg | 106.19 KB | 2016-04-18 |
glyphicons-halflings-regular.ttf | 44.34 KB | 2016-04-18 |
glyphicons-halflings-regular.woff | 22.88 KB | 2016-04-18 |
glyphicons-halflings-regular.woff2 | 17.61 KB | 2016-04-20 |
js | 0.00 KB | 2018-11-18 |
bootstrap.js | 67.34 KB | 2016-04-26 |
bootstrap.min.js | 36.00 KB | 2016-04-28 |
npm.js | 0.47 KB | 2016-04-28 |
fonts | 0.00 KB | 2018-11-18 |
glyphicons-halflings-regular.eot | 19.66 KB | 2016-04-28 |
glyphicons-halflings-regular.svg | 106.19 KB | 2016-04-28 |
glyphicons-halflings-regular.ttf | 44.34 KB | 2016-04-28 |
glyphicons-halflings-regular.woff | 22.88 KB | 2016-04-28 |
发表评论 取消回复