我做錯了什麼?我的代碼不起作用將表單中的值插入數據庫
if (isset($_POST['submit'])){
$fecha = ($_POST['fecha']);//date
$hora_in = ($_POST['hora_incial']); //time
$hora_fin = ($_POST['hora_final']);//time
$comentarios =($_POST['comentarios']);//text
//inserting data order
$order = "INSERT INTO control ('Fecha','Hora_incial','Hora_final','Comentarios') VALUES('".$fecha."','".$hora_in."','".$hora_fin."','".$comentarios."')";
//declare in the order variable
$result = mysql_query($order); //order executes
if($result){
echo("<br>Input data is succeed");
} else{
echo("<br>Input data is fail");
}
}
它表明我總是失敗。連接是好的,但我不能插入數據
感謝您的幫助! :)
mysql_error()說什麼?您是否驗證過該查詢是正確的?所有的價值都是你期望的嗎? –
可愛[SQL注入攻擊](http://bobby-tables.com)漏洞...喜歡讓你的服務器pwn3d。 –