Just 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 does not work, I always get the last message, the variable is empty.