0
Hello,
I’m having trouble connecting to the database. The following error is appearing:
Fatal error: Uncaught Error: Call to Undefined Function msqli_query() in C: xampp htdocs Data clients.php:15 Stack trace: #0 {main} thrown in C: xampp htdocs Data clients
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 this is the HTML:
<!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 so much! (Obs: looks pretty simple, but I’m not getting it. Beginner kk)
Is already without the ;
– Fernandes SF