化妆品购物网站开发的意义,专门做创意桌椅的网站,网站速度慢如何做优化,网站建设需要什么Possible Duplicate:07000我会在我的网站上的标题中显示,并且不会出现这种错误,我也不知道如何解决这个问题.谁能帮我#xff1f;这是add_answer.php文件#xff1a;include(mysql_forum_test.php); // Get value of id that sent from hidden field$id$_POST[id…Possible Duplicate:07000我会在我的网站上的标题中显示,并且不会出现这种错误,我也不知道如何解决这个问题.谁能帮我这是add_answer.php文件include(mysql_forum_test.php); // Get value of id that sent from hidden field$id$_POST[id];// Find highest answer number.$sqlSELECT MAX(a_id) AS Maxa_id FROM $tbl_name WHERE question_id$id;$resultmysql_query($sql);$rowsmysql_fetch_array($result);// add 1 to highest answer number and keep it in variable name $Max_id. if there no answer yet set it 1if ($rows) {$Max_id $rows[Maxa_id]1;}else {$Max_id 1;}// get values that sent from form$a_name$_POST[a_name];$a_email$_POST[a_email];$a_answer$_POST[a_answer];$datetimedate(d/m/y H:i:s); // create date and time// Insert answer$sql2INSERT INTO $tbl_name(question_id, a_id, a_name, a_email, a_answer, a_datetime)VALUES($id, $Max_id, $a_name, $a_email, $a_answer, $datetime);$result2mysql_query($sql2);if($result2){echo Successful;echo View your answer;// If added new answer, add value 1 in reply column$tbl_name2forum_question;$sql3UPDATE $tbl_name2 SET reply$Max_id WHERE id$id;$result3mysql_query($sql3);}else {echo ERROR;}mysql_close();?谢谢