本文目錄一覽:
學生管理系統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哦
原創文章,作者:小藍,如若轉載,請註明出處:https://www.506064.com/zh-tw/n/311192.html