環(huán)境:PHPStorm 2018.1+Wampserver 3.1 打開(kāi)單個(gè)頁(yè)面沒(méi)問(wèn)題,但點(diǎn)擊提交按鈕后,顯示“無(wú)法找到該網(wǎng)頁(yè)”。 而在無(wú)法找到網(wǎng)頁(yè)的窗口直接刷新網(wǎng)頁(yè),又可以訪問(wèn)。 index.php: <form action="./check.php" method="post"> 用戶登錄 <br> 用戶名:<input type="text" name="uname"><br> 密碼:<input type="password" name="upwd"><br> <input type="submit" value="提交"> <input type="reset" value="重置"> </form> check.php: <?php if(isset($_POST)){ if($_POST['uname'] == 'admin' && $_POST['upwd'] == 'admin'){ echo"用戶登錄成功"; }else{ echo"用戶登錄失敗"; } } ?>
It seems that there is something wrong with the address submitted by the action. Try changing it to the same level directory.