Hello,
I can not connect to the database. The following error is appearing:
Fatal error: Uncaught Error: Call to undefined function msqli_query () in C: \ xampp \ htdocs \ Clients \ data.php: 15 Stack trace: # 0 {main} thrown in C: \ xampp \ htdocs \ Clients \ dataClients.php on line 15
The PHP code is as follows:
<?php
$conexao = mysqli_connect("localhost","root","","bd_cadastroclientes");
$nome = isset($_POST['nome']) ? $_POST['nome'] : "";
$tel = isset($_POST['tel']) ? $_POST['tel'] : "";
$endereco = isset($_POST['endereco']) ? $_POST['endereco'] : "";
$cidade = isset($_POST['cidade']) ? $_POST['cidade'] : "";
//inserindo registros
$sql = "INSERT INTO tb_clientes (nome, telefone, endereco, cidade) VALUES ('$nome', '$tel', '$endereco', '$cidade')";
$salvar = msqli_query($conexao, $sql); (<<< Aqui está o erro)
header("Location:dadosClientes.php");
And the HTML is this:
<!DOCTYPE html>
<html>
<head>
<title>Cadastro de Clientes</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="estilos/estilo.css">
</head>
<body>
<div>
<h1>Cadastro de Cliente</h1>
<form method="post" action="dadosClientes.php">
Nome Completo: <input type="text" name="nome" required autofocus /><br/><br/>
Telefone: <input type="text" name="tel" required><br/><br/>
Endereço: <input type="text" name="endereco" required><br/><br/>
Cidade: <input type="text" name="cidade" required><br/><br/>
<input type="submit" name="enviar">
</form>
</div>
</body>
</html>
Thank you very much! (obs: it seems very simple, but I can not.) kk)