6
I am creating an Insert form for registration, but when I click on the button it is showing me error:
Warning: mysqli_query() expects Parameter 1 to be mysqli, string Given in C: wamp64 www Beauty and Harmony Beauty and Harmony Project - site php cadastro.php on line 25
I wonder what’s going on?
php.:
<html>
<head>
<title>cadastro concluido</title>
</head>
<body>
<?php
include("../php/conexao.php");
$nome = $_POST['nome'];
$ende = $_POST['endereco'];
$tel = $_POST['telefone'];
$comple = $_POST['complemento'];
$login = $_POST['login'];
$senha = $_POST['senha'];
$mail = $_POST['emails'];
$nume = $_POST['numero'];
$sql = "INSERT INTO usuario(nome, telefone, endereco, numero, complemento, email, login, senha) VALUES('$nome', '$tel', '$ende', '$nume', '$comple', '$mail', '$login', '$senha')";
$result = mysqli_query($bd, $sql) or die ('Error querying database.');
mysqli_close($bd);
?>
</body>
</html>
php connection.:
<?php
$host = "localhost";
$usuario = "root";
$senha = "";
$bd="admin_site";
$mysqli = new mysqli($host, $usuario, $senha, $bd);
if($mysqli -> connect_errno) {
echo "Falha na conexão: (".$mysqli->connect_errno.") ".$mysqli->connect_error;
}
?>
line 25:
$result = mysqli_query($bd, $sql) or die ('Error querying database.');
Could someone help me? Thank you...