mysql - Warning : mysqli_connect (): (HY000 / 1045)

Asked

Viewed 1,338 times

-1

<?php
include"Conexao.php";
//==============================================================================
$nroproduto =   $_POST['nroproduto'];
$nomeproduto = $_POST['nomeproduto'];
$Categoria = $_POST['Categoria'];
$Quantidade = $_POST['Quantidade'];
$fornecedor = $_POST['fornecedor'];
//==============================================================================
$sql = "INSERT INTO `estoque`(`nroproduto`, `nomeproduto`, `Categoria`, `Quantidade`, `fornecedor`) VALUES ($nroproduto,'$nomeproduto','$Categoria',$Quantidade,'$fornecedor')";
//==============================================================================
$inserir = mysqli_query($Conexao,$sql);
//$inserir = mysqli_query($Conexao,$sql);
//==============================================================================
?>

<?php 

$servername = "127.0.0.1";//padrao - server local
$database = "sistema_estoque";//alterar conforme o nome do seu banco de dados
$username = "localhost";//padrao - root
$password = "YES";//senha de conexao de banco de dados;

//create connection
//$Conexao = mysqli_connect($servername,$database,$username,$password);
$Conexao = mysqli_connect($servername,$username,$database,$password);

?>

Error message:

Warning : mysqli_connect (): (HY000 / 1045): Access denied for localhost username@localhost (using password: YES) in C: Program Files (x86) Easyphp-Devserver-17 eds-www Course PHP - Bootstrap Conexao.php on line 10

Warning : mysql_query() expects parameter 2 to be a resource, a string given in C: Program Files (x86) Easyphp-Devserver-17 eds-www PHP Course - Bootstrap _inserir_product . php in line 12

  • 1

    Friend, servername is "localhost", username is "root". That’s the default used, if that’s your problem, of course. Did you by any chance set the username to be "localhost"? Otherwise, the information is exchanged.

1 answer

0

Browser other questions tagged

You are not signed in. Login or sign up in order to post.