1
Only two radio button.
$faturamento_tipo_post = $_POST['faturamento_tipo'];
if (isset($faturamento_tipo_post) && $faturamento_tipo_post == "cl") {
$tipo_faturamento = 1;
}
elseif (isset($faturamento_tipo_post) && $faturamento_tipo_post == "co") {
$tipo_faturamento = 0;
}
else
{
$tipo_faturamento = "Houve um erro na busca do faturamento tipo";
echo '<br>'.$tipo_faturamento.'<br>';
exit;
}
<label class="radio">
<input type="radio" name="faturamento_tipo" value="cl" />
Cliente
</label>
<label class="radio">
<input type="radio" name="faturamento_tipo" value="co" />
Cortesia
</label>
It doesn’t work, I always get the last message, the variable is empty.
Post the form code
– Ricardo
Gives a print_r($_POST); to see what appears.. if comes the returns.
– Sr. André Baill
That’s exactly what I did, and I don’t get anything back from the radios
– sNniffer
Are inside a <form> ?
– Ricardo
Place the <form> line to see if nothing was missing from it.
– Sr. André Baill