1、loginProcess.php将从表单login.php中获取的$username = $_POST[‘username‘];进行验证时,要从数据库获取该用户名的密码。
$sql="select password from admin where name=‘$username‘";
一定要注意,要$username要被 ‘ ‘ 包围才行!!
2、验证密码:一般在数据库中保存密码时都会被 md5加密,故在验证时也要对输入密码加密一下 md5(string)
if($row=mysql_fetch_assoc($res)){ if($row[‘password‘]==md5($password)){ header("Location:empMain.php?username=$username"); //跳转时把用户名带过去,默认以GET全局变量携带 exit(); } }
3、页面跳转:可以将本php的某值传入到跳转的新页面中去。而且此值默认保存在$_GET[‘‘]中。
header("Location:empMain.php?username=$username");
4、php文件中添加超链接等html元素,echo ‘ ‘; 注意:单引号包围
echo ‘<a href="login.php">返回登录页面</a>‘;
5、Ctrl+Alt+↓ 复制当前行到下一行(复制增加) ;Ctrl+D: 删除当前行;
6、html里的table元素:
<table border="1">边框为1
<tr></tr>表示一行
<th></th>表示表头
<td></td>表示每个格子的元素
韩顺平-雇员管理系统-学习小结
时间: 2024-10-12 12:37:46