<!DOCTYPE html>
<html>
<head>
<title>php.cn</title>
<meta charset="utf-8" />
<style>
.box{
width:240px;
height:90px;
background:#f0f0f0;
}
</style>
</head>
<body>
<!-- 登录界面 login.php-->
<div class="box">
<form action="logincheck.php" method="post">
<table>
<tr>
<td align="right">用户名:</td>
<td><input type="text" name="username" value="请输入用户名" maxLength="6"/></td>
</tr>
<tr>
<td align="right">密 码:</td>
<td><input type="password" name="userpwd" maxLength="6"/></td>
</tr>
<tr>
<td><input type="submit" name="submit" value="登陆" /> </td>
<td><a href="register.php">注册</a></td>
</tr>
</table>
</form>
<div>
</body>
</html>
#
路徑不對,請參考下:http://www.zhao.demo/index.php/admins/Home/logincheck
看看顯示404的頁面的網址
#######你這個頁面有可能跳轉的頁面有兩個
1.點登陸,跳轉http://XXX/logincheck.php
2.點註冊,跳轉http://XXX/register.php
就是在同一目錄下的.
應該是路徑不對,如果你的html和php檔案在同一目錄下 你這麼寫沒問題 如果不在同一目錄下 就有問題了
<form action="logincheck.php" method="post">
應該是路徑不對:action="/logincheck.php" 或 action="./logincheck.php"