Home  >  Article  >  Backend Development  >  【php】四、学生管理系统-修改界面

【php】四、学生管理系统-修改界面

WBOY
WBOYOriginal
2016-06-13 12:18:371068browse

【php】4、学生管理系统-修改界面

		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">	<title>学生成绩管理系统</title>			<?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 "修改失败";    	    }    	}    		?>	        
用户id: 用户名: 用户密码:
   


预览:







Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn