這個不是一兩句話能說清楚的,也不清楚你現(xiàn)在水平在什么位置。

為企業(yè)提供網(wǎng)站設計制作、網(wǎng)站設計、網(wǎng)站優(yōu)化、全網(wǎng)營銷推廣、競價托管、品牌運營等營銷獲客服務。成都創(chuàng)新互聯(lián)公司擁有網(wǎng)絡營銷運營團隊,以豐富的互聯(lián)網(wǎng)營銷經(jīng)驗助力企業(yè)精準獲客,真正落地解決中小企業(yè)營銷獲客難題,做到“讓獲客更簡單”。自創(chuàng)立至今,成功用技術實力解決了企業(yè)“網(wǎng)站建設、網(wǎng)絡品牌塑造、網(wǎng)絡營銷”三大難題,同時降低了營銷成本,提高了有效客戶轉化率,獲得了眾多企業(yè)客戶的高度認可!
不過我說一下,需要的技術和方法步驟。
首先,你要會html css 最好還會javascript
然后是php mysql
這五種最基本的技術。
然后:
1.先用html+css寫好你程序用到的網(wǎng)站界面。
2.設計數(shù)據(jù)庫,比如 學生表,課程表,班級表,教師表等等
3.用php寫后臺,如登陸后臺,之后就是對數(shù)據(jù)庫增刪改查。
一般這種情況,都是先將用戶用戶輸入的個人信息和時間保存在服務器數(shù)據(jù)庫中。至于顯示在使用者的日程表界面上,這個要根據(jù)你的具體要求來做。最簡單的是弄個靜態(tài)表格,格式如日歷,在生成每個日期時,讀取數(shù)據(jù)庫數(shù)據(jù),將用戶的日程安排直接添加進去。另外一種做法是將用戶的日程安排弄個動態(tài)提示,這種技術要復雜一些,一般單純靠PHP比較困難,大多采取ajax技術。
下載MYSQL 安裝 創(chuàng)建數(shù)據(jù)庫
下載PHP環(huán)境 WAMP并安裝,下載編輯器例如sublime text,下載熟悉的php框架例如CI 將CI包解壓至wamp的www文件夾下,使用sublime text 打開文件夾,配置CI框架內的數(shù)據(jù)庫等信息,使用CI框架編寫程序;
php學生管理系統(tǒng)源碼,供大家參考,具體內容如下
功能:
1.添加/刪除/修改
2.數(shù)據(jù)存儲.
界面分布:
index.php
---主界面
add.php ---stu添加
action --- sql中add/del/update
(處理html表單--mysql的數(shù)據(jù)存儲 && 頁面跳轉)
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. 鏈接數(shù)據(jù)庫
try{
$pdo = new PDO("uri:mysqlPdo.ini","root","1");
}catch (PDOException $e) {
die('connection failed'.$e-getMessage());
}
//2.執(zhí)行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學生管理系統(tǒng)/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. 鏈接數(shù)據(jù)庫
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學生管理系統(tǒng)/title
/head
body
center
?php include ('menu.php');
//1. 鏈接數(shù)據(jù)庫
try{
$pdo = new PDO("uri:mysqlPdo.ini","root","1");
}catch (PDOException $e) {
die('connection failed'.$e-getMessage());
}
//2.執(zhí)行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); // 解析數(shù)據(jù)
}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學生管理系統(tǒng)/h2
a href="index.php" 瀏覽學生/a
a href="add.php" 添加學生/a
hr
/body
/html
網(wǎng)站題目:學生管理系統(tǒng)數(shù)據(jù)庫php 學生管理系統(tǒng)數(shù)據(jù)庫設計總結
網(wǎng)頁鏈接:http://chinadenli.net/article20/hijhco.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供營銷型網(wǎng)站建設、網(wǎng)站設計公司、網(wǎng)站設計、虛擬主機、Google、自適應網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)