3
I am getting the following error when time to perform a query to insert data into a table in the database:
You have an error in your SQL syntax; check the manual that Corresponds to your Mysql server version for the right syntax to use near ''name','quantity','code') VALUES ('Refined Sugar', '2','')' at line 1
My code:
<html>
<head>
<title>Teste</title>
<meta charset="UTF-8"/>
</head>
<body>
<?php
$host = "localhost";
$user = "root";
$pass = "";
$dbnm = "carrinho";
$con = mysql_connect($host, $user, $pass) or die (mysql_error());
$banco = mysql_select_db($dbnm,$con) or die(mysql_error());
if (!$banco)
die ("Erro de conexão com banco de dados, o seguinte erro ocorreu -> <br> ".mysql_error());
$nome = 'Açúcar Refinado';
$quantidade = '2';
$query = "INSERT INTO orcamento('nome','quantidade','codigo')
VALUES ('$nome', '$quantidade','')";
mysql_query($query,$con) or die ("Não foi Possivel inserir <br>". mysql_error());
echo "Seu cadastro foi realizado com sucesso!<br>Agradecemos a atenção.";
?>
</body>
</html>
Vlw, thank you for your reply.
– Igor Ramos