This code is supposed to get the information from a simple HTML form and post in into a MySQL database:
<html>
<head>
<title>Cadastro de Cinema</title>
<head>
<body>
<?php
$host = "localhost";
$user = "root";
$pass = "";
$banco = "cinema";
$con = @mysqli_connect($host, $user, $pass, $db) or die(mysql_error());
?>
<?php
$email= isset($_POST['email']) ? $_POST['email'] : '';
$senha= isset($_POST['senha']) ? $_POST['senha'] : '';
$nome= isset($_POST['nome']) ? $_POST['nome'] : '';
$rua= isset($_POST['rua']) ? $_POST['rua'] : '';
$bairro= isset($_POST['bairro']) ? $_POST['bairro'] : '';
$numero= isset($_POST['numero']) ? $_POST['numero'] : '';
$cidade= isset($_POST['cidade']) ? $_POST['cidade'] : '';
$sql = mysqli_query($con, "INSERT INTO cinema(email, senha, nome, rua, bairro, numero, cidade)
VALUES ('$email', '$senha', '$nome', '$rua', '$bairro', '$numero', '$cidade')");
echo "OK";
?>
</body>
</html>
When I test it, I get the "OK" echo, but the info is not in the mySQL database. What could it be?
</div>