對於使用PHP來處理表單的網站而言,表單提交後跳轉頁面是一項非常常見的功能。本文將會詳細介紹如何透過PHP來實現表單提交後跳到指定頁面。
為了實現表單提交後跳轉頁面,我們需要按照以下步驟進行操作:
<form action="login.php" method="post"> <label for="username">用户名:</label> <input type="text" id="username" name="username"> <br> <label for="password">密码:</label> <input type="password" id="password" name="password"> <br> <input type="submit" value="提交"> </form>
<?php // 获取表单数据 $username = $_POST['username']; $password = $_POST['password']; // 执行验证操作 if ($username == 'admin' && $password == '123456') { // 验证通过,跳转到成功页面 header('Location: success.php'); } else { // 验证失败,跳转到失败页面 header('Location: error.php'); }
<!DOCTYPE html> <html> <head> <title>操作成功</title> <style> .message { margin: 100px auto; width: 400px; text-align: center; font-size: 24px; color: green; } </style> </head> <body> <div class="message"> 操作成功! </div> </body> </html>
以上是php實作提交表單後跳頁的詳細內容。更多資訊請關注PHP中文網其他相關文章!