使用用户在另一个文件php中的输入
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用用户在另一个文件php中的输入相关的知识,希望对你有一定的参考价值。
我不会在另一个文件中使用来自用户的输入。因为现在我不能使用来自用户的输入(在send.php文件内部),因为我不知道如何获取这些输入。
这是我的索引.PHP:
<form>
<input type="text" name="Username" placeholder="Username....">
<br>
<br>
<input type="text" name="Password" placeholder="Password....">
<br>
<br>
<div class="knop">
<a href="send.php">Inloggen</a>
</form>
我的send.php:
include("index.php");
$username = "Username: ";
$us = $_POST['Username']; // I wan't to get the input that the user gave inside the index.php
$password = "Password: ";
$pass = $_POST['Password']; // I wan't to get the input that the user gave inside the index.php
答案
只需在您的表单标签中设置一个动作属性和HTTP方法,并且您不应该使用href属性,因为它只会将您重定向到另一个页面而不发送数据,因此请在提交时使用button标签属性,而不是
<form action="path/to/send.php" method="POST">
<input type="text" name="Username" placeholder="Username....">
<br>
<br>
<input type="text" name="Password" placeholder="Password....">
<br>
<br>
<div class="knop">
<button type="submit">Inloggen<button/>
</form>
现在您可以在$_POST['Password']
中使用$_POST['Username']
和send.php
检索数据,
而且您也不必在send.php中将您的index.php include
。
我认为在使用PHP和html表单之前,您需要阅读有关PHP和HTML的更多信息
以上是关于使用用户在另一个文件php中的输入的主要内容,如果未能解决你的问题,请参考以下文章