i have this dynamic textbox, and i want to get value by using class. by php
<input id="op1" name="po1" class="key" size="50">
<input id="op2" name="po2" class="key" size="50">
<input id="op3" name="po3" class="key" size="50">
<input id="op4" name="po4" class="max" size="50">
<input id="op5" name="po5" class="key" size="50">
<input id="op6" name="po6" class="lol" size="50">
<input id="op6" name="po6" class="lol" size="50">
in this textbox there are “key”, “max” and “lol” class
How i get value from this all dynamic textbox by using only Class “Key” in php
I’m unsure what you mean about “using class”, however you can loop the $_POST array to get access to the variables like so:
Alternatively you can group your vars together in your HTML like so:
Which then means that PHP sees the POST variable po as an array, like so: