Is it possible to get some other attribute’s value than attribute named value with $_POST
example: <option value="FusRo" name="Dah"></option>
Normally when i use $_POST[‘Dah’] The php grabs FusRo (the value).
But I want to grab another attribute’s value than attribute named value. I hope you understand.
If I cant use $_POST to grab some other value, is it some other comand i can use?
Another example:
If i use
<option value="FusRo" name="Dah"></option>
Can I get the “Dah” with $_POST instead of “Fusro” ?
You can put your other value in a hidden field:
Then get it from
$_POSTwith:If this value has to dynamically change based on what’s in the
<select>, then you’ll need JavaScript.If you want to grab the keys from
$_POST(i.e. thenameattributes from your form fields), you can iterate over$_POSTlike this:Note that iterating over
$_POSTwill likely produce more output than just that one form element (unless'Dah'is the only thing you submitted in your form.