Get the name of submit button in PHP

后端 未结 3 1045
粉色の甜心
粉色の甜心 2021-01-05 13:55

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

3条回答
  •  猫巷女王i
    2021-01-05 14:41

    '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);
    

提交回复
热议问题