0
I’m here with a little problem that shouldn’t be a big deal... I have a form where I have two radio 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 in the table offers_pro, if it does not insert in another table.
My code is 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!";
}
}
The way this, when Radio btn = 1 it inserts into a single table, all right... when it is =0 it inserts into the two tables... How can I fix this?
Solved. It was no big deal, really. Hug
– David Concha
To change a post click on the button
editar
just below your post, you don’t need to create an answer to make corrections.– RFL