PHP中获取提交按钮的名称

发布于 2024-11-29 12:20:57 字数 365 浏览 1 评论 0原文

如何在 PHP 中获取提交按钮的名称?

我得到了提交按钮的值,但我找不到 获取按钮名称的任何代码。下面是我写的代码。

<form name="form1"  method="post">
    <input type="submit" value="hello" name="submitbutton">
</form>

<?php
    echo "Value of submit button: " . $_POST['submitbutton'];
    echo "Name of submit button: " . // What should I do here? //;
?>

How do I get the name of the submit button in PHP?

I got the value of submit button, but I could not find
any code to get the name of the button. Below is the code I have written.

<form name="form1"  method="post">
    <input type="submit" value="hello" name="submitbutton">
</form>

<?php
    echo "Value of submit button: " . $_POST['submitbutton'];
    echo "Name of submit button: " . // What should I do here? //;
?>

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

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

发布评论

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

评论(3

醉酒的小男人 2024-12-06 12:20:57

您将在 $_POST 数组中找到该名称。

<?php
print_r($_POST);
?>

这样您将看到 $_POST 数组中的所有内容。

您可以使用以下方法迭代数组:

foreach($_POST as $name => $content) { // Most people refer to $key => $value
   echo "The HTML name: $name <br>";
   echo "The content of it: $content <br>";
}

You will find the name in the $_POST array.

<?php
print_r($_POST);
?>

This way you will see everything in the $_POST array.

You can iterate through the array with:

foreach($_POST as $name => $content) { // Most people refer to $key => $value
   echo "The HTML name: $name <br>";
   echo "The content of it: $content <br>";
}
乱了心跳 2024-12-06 12:20:57

'submitbutton' 是提交按钮的名称。
您可以使用 array_keys() 功能

$postnames = array_keys($_POST);

'submitbutton' is the name of your submit button.
you can get the names of super global $_POST array elements with array_keys() function

$postnames = array_keys($_POST);
淑女气质 2024-12-06 12:20:57

与任何其他 POST 变量一样,名称将位于 $_POST 数组中。该名称是 $_POST 数组中的键。

Its like any other POST variable, the name will be in the $_POST array. The name is the key in the $_POST array.

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