我无法从一页到另一页获取价值...给我一些想法

时间:2019-05-25 11:01:40

标签: php

我无法使用PHP从一页到另一页获取值

这是代码

<form action="example/registered.php" method="post">
  <h3>
  <input type="text" name="firstname" placeholder="FirstName" size="75" height= "100px" width= "100px" value="suba">
  <br><br>

  <input type="text" name="lastname" placeholder="LastName" size="75" height= "100px" width= "100px" value="Krishnan">
  </h3>
  <br><br>

  <h5> <a class="link" href="{{ url('registered') }}">Register</a> </h5>

</form>

1 个答案:

答案 0 :(得分:1)

(某种程度上忽略了这个看起来像模板的代码,该代码大概会生成一个URL,因为问题中没有关于它的信息...)这只是一个链接:

<a class="link" href="{{ url('registered') }}">Register</a>

链接未提交表单。提交按钮可以。用提交按钮替换链接,以将表单发布到表单的操作URL:

<input type="submit" class="link" value="Register" />