I need a hello, I'm trying to create an object containing all the data in a question / answer form. in php I create the radios like this:
<input type="radio" name="'.$row['id'].'" class="'.$row['id'].'" value="'.$row2['id'].'"> '.utf8_encode($row2['resposta']).'<br>';
Now I need to get all these inputs and their values, detail: the table that will receive the result looks like this:
id|id_usuario|id_pesquisa|id_var|id_pergunta|id_resposta.
Thank you if anyone can give me a light !!!