次のPHPコードを使用してMySQLテーブルに情報を追加しようとしています。(HTML5の基本的なWebフォームから名前とテキストを入力します。)おそらく構文の問題ですか?
<?php
include "dbinfo.php"; //contains mysqli_connect information (the $mysqli variable)
//inputs
$name = $_GET["name"];
$text = $_GET["text"];
$sqlqr = 'INSERT INTO `ncool`.`coolbits_table` (`name`, `text`, `date`) VALUES ("$name", "$text", CURRENT_TIMESTAMP);'; //the query. I'm pretty sure that the problem is a syntax one, and is here somewhere.
mysqli_query($mysqli,$sqlqr); //function where the magic happens.
?>
エラーはスローされません。空白の画面が表示され、「$name」と「$text」の行がMySQLテーブルに追加されます。