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>
私は何を知らない:私はすべての準備ができて、今のサイトを持っていたが、私はボタンを保存して提出し、登録ページにリダイレクト提出することはできません、これは私の全体のコードですレコードを保存して別のページにリダイレクトするコードを入力する
あなたの質問は明確ではありません。フォームを送信できますが、別のページにリダイレクトしたいですか? –