Some time ago, I asked a question about using the same input / hidden name several times on the page and received an answer that did not work, as he suggested that I use it to put brackets after the field name, like partno[].
I cannot use this in my form, since the cart is sent only to recognize certain field names, such as: partno, item, price, qty, etc. (I can not use partno[], item[], etc.). Therefore, I really should be able to get all the values ββfor each name of the same field used several times. When I use the method GET, it will display all the values ββfor each field name used in the address bar. You can try this and submit the form. Look at the URL in the address bar.
My new question is: is there a way in PHP to capture all the information passed using the method POST? (for example, what is shown in the address bar in the above example, but using POST, but not GET). I can make it out if I can figure out how to capture it.
Thanks Kelly
source
share