PHP POST Data problem?

Bni

New member
Hi

I have a input element in my html body and i want to $_POST it, the problem is that the input element each time has different name, is there any way to find the element then $_POST its value in php ?

is there any function to find the element in php ?


$myvar = stripslashes($_POST['???']);
 
Without knowing what the name could be there's not a lot you can do. I recommend modifying your client side code so that the input field has a static name.
 
Back
Top