我試圖插入一個變量到MySQL表,但它不會做我想做(沒有錯誤,它只是不工作)插入變量到MySQL表不工作
$string = 'this is an example';
mysql_query("insert into tablename (columnname) values ????");
誰都可以幫我如何將$string
插入到表格名稱中?我嘗試用($string)
,(".$string.")
,$string
替換????
,但是它們都沒有將$string
變量插入到數據庫中。
在此先感謝!
您可能沒有提交事務此外,請用準備好的語句,而不是字符串插值 – bernie
嗨,Bernie,你能詳細解釋一下嗎? –
'insert'語句需要提交,或者可以使用「自動提交」設置,但我更喜歡手動提交。這裏:http://php.net/manual/en/mysqli.prepare.php – bernie