整個MySQL錯誤消息我試着這樣做:不接收使用模具(mysql_error)
<?php
if(isset($_POST['update']) && isset($_GET['topic_id']))
{
$title=$_POST['title'];
$tag_h1=$_POST['tag_h1'];
$tag_h2=$_POST['tag_h2'];
$tag_metadata=$_POST['tag_metadata'];
$content=$_POST['content'];
$topic_id=$_GET['topic_id'];
mysql_query("
UPDATE topic
SET tag_h1=$tag_h1,tag_h2=$tag_h2,tag_metadata=$tag_metadata,content=$content,title=$title
WHERE topic_id=$topic_id
") or die(mysql_error);
echo "$title<br/>";
echo "$tag_h1<br/>";
echo "$tag_h2<br/>";
echo "$tag_metadata<br/>";
echo "$content<br/>";
}
?>
但我鉻得到錯誤100,並出現沒有在Firefox
什麼是實際的錯誤消息與它? – Oldskool
它沒有任何東西.. php什麼都不做..什麼使得在PHP編程如此困難 –
你的代碼也是乞求注入攻擊。在將它傳遞到數據庫之前,您應該避開您的輸入! –