通过html获取一个值并在php页面中显示它

发布于 2024-12-11 07:43:33 字数 130 浏览 0 评论 0原文

我希望用户在文本字段中输入数据,该数据将使用 html 创建。当用户单击提交按钮时,将加载 url 为 int form 标记的页面。在该页面中,该页面将在 php 中,我想显示用户输入的电子邮件,代码是什么?文本字段的n值分别是电子邮件和密码!

I want the user to enter the data in text field,which will be created using html.When the user clicks on submit button,the page,whose url is mentoined int form tag will be loded.In that page,which will be in php, i want to diplay the email enterd by the user, what is the codefor this?The nvalues of the text fields are email and password respectively!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

瑾兮 2024-12-18 07:43:33

根据您用于提交表单的方法,您应该使用:

echo $_POST['inputName'];

echo $_GET['inputName'];

什至(两者都包含),

echo $_REQUEST['inputName'];

其中 inputName 是输入的“名称”字段,例如:

<input type="text" name="inputName" />

Depending on the method you use for the form to submit you should either use:

echo $_POST['inputName'];

or

echo $_GET['inputName'];

or even (has both in them)

echo $_REQUEST['inputName'];

where inputName is the "name" field of your input, like:

<input type="text" name="inputName" />
陪你搞怪i 2024-12-18 07:43:33

这取决于您的表单用于提交表单的方法。这可以是 GET 或 POST,并由表单上的方法属性设置。

对于 GET 请求,您可以访问如下变量:

$email = $_GET['email'];
$password = $_GET['password'];

对于 POST 请求,您应该使用:

$email = $_POST['email'];
$password = $_POST['password'];

如果将输入存储在数据库中,请不要忘记转义输入;如果将输出显示给页面上的用户,请不要忘记转义输出!

It depends on the method that your form uses to submit the form. This can be GET or POST, and is set by the method attribute on your form.

For a GET request you can access the variables like this:

$email = $_GET['email'];
$password = $_GET['password'];

For a POST request you should use:

$email = $_POST['email'];
$password = $_POST['password'];

Do not forget to escape the input if you store it in a database, or escape the output if you display it to the users on your page!

请止步禁区 2024-12-18 07:43:33

您可以使用 $_REQUEST 方法获取从 HTML 或任何页面传递的所有值,并使用它在 PHP 中显示,非常简单!

You can use $_REQUEST method to get all values passed from your HTML or any page and use that to display in PHP, pretty simple !

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文