0
我需要幫助我的網站球員。我有網站都準備好了,但現在我不能讓一個提交按鈕保存並重定向到所提交的註冊頁面,這是我的整個代碼:我如何提交按鈕鏈接到另一頁
<h1> Welcome to the Registration Page <h1>
<form>
First name:<br>
<input type="text" name="First Name"><br>
Middle name:<br>
<input type="text" name="Middle Name"><br>
Last name:<br>
<input type="text" name="Last Name"><br>
Gender: <br>
<input type="radio" name="gender" value="male" checked> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
<input type="radio" name="gender" value="other"> Other<br>
Email Address:<br>
<input type="text" name="Email Address"><br>
Password:<br>
<input type="text" name="Password"><BR>
Confirm Password:<br>
<input type="text" name="Password Confirmation"><br>
Referral Account:<br>
<input type="text" name="Referal">
<input type="submit" value="Submit">
</form>
我不知道是什麼放入代碼以使其保存記錄並重定向到另一頁
你的問題不清楚,你可以提交表格,但你想重定向到另一個頁面? –