I scab HTML form from the site. In this HTML form there are many fields like input (text, radio) and textarea, select. And in the sparsen form, the data that needs to be sent is already displayed, I need to change only one value. The question is, is it possible to somehow write to the array all the data that the form will send in cases of sending the form in a standard? Ie, as in jquery seralize, do this in PHP so that I get all the data from all the fields that the form will send.
- serialize () ? - Edward
- Do I just push a variable with an HTML form into this function? - Vitali Malinovski
- Pass an array to this function, and at the output get its serialized representation (string). - Edward
|