如何将提交按钮链接到另一个页面

时间:2016-07-18 02:49:41

标签: html

我的网站上需要帮助。我现在已经准备好了网站,但我无法进行提交按钮保存并重定向到提交的注册页面,这是我的全部代码:

<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>

我不知道在代码中添加什么来保存记录并重定向到另一个页面

2 个答案:

答案 0 :(得分:0)

或者你可以简单地如果你有 php 文件:

{% for image in post.meta('gallery') %}
   <img src="{{ Image(image) }}" />
{% endfor %}

答案 1 :(得分:-1)

您可能需要action属性以及要重定向的页面。

<form method="POST" action="another_page.html"></form>

提交表单和重定向的方法有很多种。您可能想了解PHP和/或Ajax。

此外,如果您想在数据库中存储记录,例如,您应该学习PHP和数据库交互的SQL查询。

您可以参考此link