I'm here with a little problem that should not be anything too ... I have a form where I have two radios buttons, and depending on the selection of one of them, the query will be different. If the value of my radio button = 1 it inserts into the probands table, if it does not insert into another table.
My code looks like this:
if (isset($_POST['visib'])){
if ($_POST['visib'] == '0'){
//PRIMEIRA CONSULTA
$sql = "INSERT INTO ofertas (titulo, descricao, valor, user_of, categ, prioridade, local)
VALUES ('$titulo', '$descricao', '$valor', '$login_session','$categ','$pro_user','$local')";
if ($conn->query($sql) === TRUE) {
echo "New record created successfully";
} else {
echo "Error: " . $sql . "<br>" . $conn->error;
}
$diferenca=$saldo-$pro_user;
$up = mysql_query("UPDATE login SET saldo='$diferenca' WHERE id=$id");
if(mysql_affected_rows() > 0){
echo "Sucesso: Atualizado corretamente!";
}else{
echo "Aviso: Não foi atualizado!";
}
}
//SEGUNDA CONSULTA
$sql = "INSERT INTO ofertas_pro (titulo, descricao, valor, user_of, categ, local)
VALUES ('$titulo', '$descricao', '$valor', '$login_session','$categ','$local')";
if ($conn->query($sql) === TRUE) {
echo "New record created successfully";
} else {
echo "Error: " . $sql . "<br>" . $conn->error;
}
$diferenca=$saldo-$pro_user;
$up = mysql_query("UPDATE login SET saldo='$diferenca' WHERE id=$id");
if(mysql_affected_rows() > 0){
echo "Sucesso: Atualizado corretamente!";
}else{
echo "Aviso: Não foi atualizado!";
}
}
In this way, when Radio btn = 1 it inserts into a single table, that's fine ... when it is = 0 it inserts into the two tables ... How can I resolve this?