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

WBOY
Release: 2016-06-13 12:18:37
Original
1111 people have browsed it

【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 "修改失败";    	    }    	}    		?>	        
Copy after login
用户id: 用户名: 用户密码:
   


预览:







Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template