0
I created a database and am sending the information normally. However, I have an optional field in the form. If the user wants to provide more details, he normally writes, if not, I wanted to send the following message to the database Sem Mensagem
.
<?php
$user = $_POST["user2"];
$manga = $_POST["titulo2"];
$capitulo = $_POST["capitulo2"];
$mensagem = $_POST["mensagem2"];
$assunto = $_POST["opcoes"];
$con = mysqli_connect("localhost","root","","report");
$sql = "insert into denuncia values(null,'".$user."','".$manga."','".$capitulo."','".if($mensagem == 0){"Sem mensagem"} else {$mensagem}."','".$assunto."')";
if(mysqli_query($con, $sql)) {
$msg = "Obrigado! Sua denúncia foi enviada.";
} else {
$msg = "Erro ao enviar.";
}
mysqli_close($con);
?>
<script> alert('<?php echo $msg;?>');
location.href="index.php";
</script>
What is the optional field?
– Roberto de Campos