您的位置:

关于php试题学生管理系统的信息

本文目录一览:

学生管理系统php源码谁有

php学生管理系统源码,供大家参考,具体内容如下

功能:

1.添加/删除/修改

2.数据存储.

界面分布:

index.php

---主界面

add.php ---stu添加

action --- sql中add/del/update

(处理html表单--mysql的数据存储 && 页面跳转)

edit.php ---stu修改

menu.php

--首页

1. index.php

!DOCTYPE html

html lang="en"

head

meta charset="UTF-8"

title学生信息管理/title

script

function doDel(id) {

if(confirm('确认删除?')) {

window.location='action.php?action=delid='+id;

}

}

/script

/head

body

center

?php

include ("menu.php");

?

h3浏览学生信息/h3

table width="500" border="1"

tr

thID/th

th姓名/th

th性别/th

th年龄/th

th班级/th

th操作/th

/tr

?php

// 1. 链接数据库

try{

$pdo = new PDO("uri:mysqlPdo.ini","root","1");

}catch (PDOException $e) {

die('connection failed'.$e-getMessage());

}

//2.执行sql

$sql_select = "select * from stu";

//3.data 解析

foreach ( $pdo-query($sql_select) as $row) {

echo "tr";

echo "th{$row['id']} /th";

echo "th{$row['name']}/th";

echo "th{$row['sex']} /th";

echo "th{$row['age']} /th";

echo "th{$row['classid']}/th";

echo "td

a href='edit.php?id={$row['id']}'修改/a

a href='javascript:void(0);' onclick='doDel({$row['id']})'删除/a

/td";

echo "/tr";

}

?

/table

/center

/body

/html

2. add.php

!DOCTYPE html

html lang="en"

head

meta charset="UTF-8"

title学生管理系统/title

/head

body

center

?php include ('menu.php'); ?

h3增加学生信息/h3

form action="action.php?action=add" method="post"

table

tr

td姓名/td

tdinput type="text" name="name"/td

/tr

tr

td年龄/td

tdinput type="text" name="age"/td

/tr

tr

td性别/td

tdinput type="radio" name="sex" value="男"男/td

tdinput type="radio" name="sex" value="女"女/td

/tr

tr

td班级/td

tdinput type="text" name="classid"/td

/tr

tr

!-- td /td--

tda href="index.php"返回/td

tdinput type="submit" value="添加"/td

tdinput type="reset" value="重置"/td

/tr

/table

/form

/center

/body

/html

3. action.php

?php

/**

* Created by PhpStorm.

* User: hyh

* Date: 16-7-7

* Time: 下午9:37

*/

//1. 链接数据库

try{

$pdo = new PDO("uri:mysqlPdo.ini","root","1");

}catch (PDOException $e) {

// echo 'Connection failed: ' . $e-getMessage();

die('connection failed'.$e-getMessage());

}

//2.action 的值做对操作

switch ($_GET['action']){

case 'add'://add

$name = $_POST['name'];

$sex = $_POST['sex'];

$age = $_POST['age'];

$classid = $_POST['classid'];

$sql = "insert into stu (name, sex, age, classid) values ('{$name}', '{$sex}','{$age}','{$classid}')";

$rw = $pdo-exec($sql);

if ($rw 0){

echo "scriptalter('添加成功');/script";

}else{

echo "scriptalter('添加失败');/script";

}

header('Location: index.php');

break;

case 'del'://get

$id = $_GET['id'];

$sql = "delete from stu where id={$id}";

$rw = $pdo-exec($sql);

if ($rw 0){

echo "scriptalter('删除成功');/script";

}else{

echo "scriptalter('删除失败');/script";

}

header('Location: index.php');

break;

case 'edit'://post

$id = $_POST['id'];

$name = $_POST['name'];

$age = $_POST['age'];

$classid = $_POST['classid'];

$sex = $_POST['sex'];

// echo $id, $age, $age, $name;

$sql = "update stu set name='{$name}', age={$age},sex='{$sex}',classid={$classid} where id={$id};";

// $sql = "update myapp.stu set name='jike',sex='女', age=24,classid=44 where id=17";

print $sql;

$rw = $pdo-exec($sql);

if ($rw 0){

echo "scriptalter('更新成功');/script";

}else{

echo "scriptalter('更新失败');/script";

}

header('Location: index.php');

break;

default:

header('Location: index.php');

break;

}

4.edit.php

!DOCTYPE html

html lang="en"

head

meta charset="UTF-8"

title学生管理系统/title

/head

body

center

?php include ('menu.php');

//1. 链接数据库

try{

$pdo = new PDO("uri:mysqlPdo.ini","root","1");

}catch (PDOException $e) {

die('connection failed'.$e-getMessage());

}

//2.执行sql

$sql_select = "select * from stu where id={$_GET['id']}";

$stmt = $pdo-query($sql_select);

if ($stmt-rowCount() 0) {

$stu = $stmt-fetch(PDO::FETCH_ASSOC); // 解析数据

}else{

die("no have this id:{$_GET['id']}");

}

?

h3修改学生信息/h3

form action="action.php?action=edit" method="post"

input type="hidden" name="id" value="?php echo $stu['id'];?"

table

tr

td姓名/td

tdinput type="text" name="name" value="?php echo $stu['name'];?"/td

/tr

tr

td年龄/td

tdinput type="text" name="age" value="?php echo $stu['age'];?"/td

/tr

tr

td性别/td

td

input type="radio" name="sex" value="男" ?php echo ($stu['sex'] == "男")? "checked":"";? 男

/td

td

input type="radio" name="sex" value="女" ?php echo ($stu['sex'] == "女")? "checked":"";? 女

/td

/tr

tr

td班级/td

tdinput type="text" name="classid" value="?php echo $stu['classid']?"/td

/tr

tr

td /td

tdinput type="submit" value="更新"/td

tdinput type="reset" value="重置"/td

/tr

/table

/form

/center

?php

?

/body

/html

5. menu.php

!DOCTYPE html

html lang="en"

body

h2学生管理系统/h2

a href="index.php" 浏览学生/a

a href="add.php" 添加学生/a

hr

/body

/html

如何用php代码实现一个学生管理系统包括学生管理课程管理

这个不是一两句话能说清楚的,也不清楚你现在水平在什么位置。

不过我说一下,需要的技术和方法步骤。

首先,你要会html css 最好还会javascript

然后是php mysql

这五种最基本的技术。

然后:

1.先用html+css写好你程序用到的网站界面。

2.设计数据库,比如 学生表,课程表,班级表,教师表等等

3.用php写后台,如登陆后台,之后就是对数据库增删改查。

求指导这个PHP学生管理系统如何连接数据库使学生管理系统正常运行?

1、修改mysql配置文件

vi /etc/my.cnf

[mysqld]段加skip-name-resolve

在这个之前要把mysql的远程访问权限打开,或者再加skip-grant-table(不推荐)

2、修改hosts.allow

vi /etc/hosts.allow

加mysqld : ALL : ALLOW

mysqld-max : ALL :ALLOW

其它网友的补充:

mysql教程 'reading initial communication packet'错误解决方法

出现这种问题是服务器突然关掉出现的问题,

错误提示是:

无法链接数据库教程(mysql)服务器, 请检查服务器地址、用户名、密码.

代码: 2013

错误: lost connection to mysql server at 'reading initial communication packet', system error: 0

下面我们来看看具体解解决办法

方法一:解决方法是在 my.cnf 里面的 [mysqld] 段增加一个启动参数 skip-name-resolve

方法二:如果你方法一不行,可以尝试重装mysql server这样,再把数据库导进去就ok了。

总结:

如果能不重装mysql情况能把机器搞好,那是最好不过了,不在万不得己请不要重装mysql哦