<?php
include ("conn.php");
$id=$_POST['id'];
$user=$_POST['user'];
$title=$_POST[ 'title'];
$content=$_POST['content'];
if($_POST['submit']){
$sql="메시지에 삽입(id,user,title,content,lastdate) )VALUES('','$user','$title','$content',now())";
mysql_query($sql);
echo "<seript>alert('提交成功') ;location.href='add.html';</seript>";
}
?>
亚连2018-06-11 09:24:28
echo "<seript>alert('제출 성공');location.href='add.html';</seript>"; 이 명령문을 자세히 살펴보고 오류가 있는지 확인하시겠습니까?