php學生管理系統源碼,供大家參考,具體內容如下
功能:
1.添加/刪除/修改
2.數據存儲.
界面分布:
index.php
--->主界面
add.php--->stu添加
action--->sql中add/del/update
(處理html表單-->mysql的數據存儲&&頁面跳轉)
edit.php--->stu修改
menu.php
-->首頁
1.index.php
<!DOCTYPEhtml>
<htmllang="en">
<head>
<metacharset="UTF-8">
<title>學生信息管理</title>
<script>
functiondoDel(id){
if(confirm('確認刪除?')){
window.location='action.php?action=del&id='+id;
}
}
</script>
</head>
<body>
<center>
<?php
include("menu.php");
?>
<h3>瀏覽學生信息</h3>
<tablewidth="500"border="1">
<tr>
<th>ID</th>
<th>姓名</th>
<th>性別</th>
<th>年齡</th>
<th>班級</th>
<th>操作</th>
</tr>
<?php
//1.鏈接數據庫
try{
$pdo=newPDO("uri:mysqlPdo.ini","root","1");
}catch(PDOException$e){
die('connectionfailed'.$e->getMessage());
}
//2.執行sql
$sql_select="select*fromstu";
//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']}