0
I have a system in PHP, Javascript and MYSQL where the person assembles your request...
It’s working properly, but I need to pass data to a report and I don’t know how to do it...
Ex. Size 06x08 - Oval - Frameless...
In the radio input of each item the value is set with the value of each piece.
So I can not pass via POST or GET what is the customer’s choice...
He gives me only the values
Ex. of a radio input
<input type="radio" value="10.00" name="moldura" id="btn_medida02_oval_sm">
The only value passed via POST/GET is the attribute
value
associated withname
field. What other value would you expect to pass?– Woss
I want to pass the name of the selected item... Ex: Size 06x08cm. The value assigned to it in value comes from the database
– Betinho Silva
There is how I pass the price, without using the value of the radio button?
– Betinho Silva
What information you need to send, in fact?
– Woss