Can you please help me with this?
var_dump($result);
always returns
bool(false)
Why is that?
Here is my query:
$query="INSERT INTO inzeraty (nazov, price) VALUES (" .$nazov ."," .$price .")";
$result= mysqli_query($mysqli,$query);
var_dump($result);