首頁  >  文章  >  後端開發  >  【php】4、學生管理系統-修改介面

【php】4、學生管理系統-修改介面

WBOY
WBOY原創
2016-08-08 09:25:161510瀏覽
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<title>学生成绩管理系统</title>
	</head>	
	<?php 
        include_once &#39;stuService.class.php&#39;;
        include_once &#39;student.class.php&#39;;
    	session_start();
    	$name = $_SESSION[&#39;student_name&#39;];
    	
    	if($name == "")
    	{
    	    header("Location: stu_login.php?error=1");
    	    exit();
    	}
    	
    	$service = new stuservice();
    	$stu = new student();
    	$stu = $service->getstu($name);
    	
    	if(!empty($_GET['error']))
    	{
    	    $error = $_GET['error'];
    	    if($error==1)
    	    {
    	        echo "修改失败";
    	    }
    	}
    	
	?>
	<body background="pic/bg.gif">
        <form action="studentchangeok.php" method="post">
            <table width="767" height="644" border="0" align="center">
                <tr>
                    <td height="228" colspan="5" background="pic/top.gif">    </td>
                </tr>
                <tr>
                    <td height="22" colspan="5" background="pic/in_01.gif"></td>
                </tr>
                <tr>
                    <td background="pic/in_20.gif" >用户id:<input name="stu_id" value="<?php echo $stu->getStu_id();?>" /></td>
                    <td background="pic/in_20.gif" >用户名:<input name="stu_name" value="<?php echo $stu->getStu_name();?>" /></td>
                    <td background="pic/in_20.gif" >用户密码:<input name="stu_password" value="<?php echo $stu->getStu_password();?>" /></td>
                </tr>
                <tr>
    				<td> </td>
			        <td width="48"> </td>
			        <td width="135"><input name="submit" type="submit" value="确认修改" />
					<input type="reset" value="清空" /></td>
    			</tr>
            </table>
        </form>
    </body>
</html>

預覽:


以上就介紹了【php】4、學生管理系統-修改介面,包括了方面的內容,希望對PHP教學有興趣的朋友有幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
上一篇:excel上傳下載下一篇:excel上傳下載