PHP post表单方法需要什么?

时间:2017-12-17 18:16:26

标签: php html

我是php的新手,所以帮助我让它工作。打开ready.php文件但输入的表单数据所需的操作不会显示在ready.php文件中。

我在index.php中使用此代码表示。

<form method="post" action="ready.php">
<div class="enter-name">
    <input class="animated pulse infinite" type="name" required="" maxlength="50" name="n" placeholder=" Enter Your Name Here">
    <button class="btn animated shake infinite" type="submit"><span></span> Go</button>
</div>

ready.php的代码

<figure>
<h1 class="naming"></h1>
<h1 class="naming"></h1>
<h1 class="naming"></h1>
<h1 class="naming"></h1>
<h1 class="naming"></h1>

<div class="busi"><br><img src="4.png" height="35px" width="35px"/>

我没有得到那个问题。

2 个答案:

答案 0 :(得分:2)

你不需要数据库连接,但是你需要运行/可以访问具有php功能的某种服务器(apache是​​一个不错的选择)。

关于代码,我不是专家,但您可以尝试添加“name”属性,因为这就是php脚本要查找的内容。我在下面添加了它(name =“name”)。您还需要将输入类型更改为文本(type =“text”):

<input class="animated pulse infinite" type="text" name="name" required="" maxlength="50" name="n" placeholder=" Enter Your Name Here">

在您的php脚本中,您可以使用以下代码从文本框中找到名称变量:

$myName = $_POST['name'];

名称将在变量$ myName。

中 祝你好运!

答案 1 :(得分:0)

我通过应用此代码解决了上述问题

<?php echo $_REQUEST['n'];?>