<?php
include ("conn.php");
$id=$_POST['id'];
$user=$_POST ['ユーザー'];
$title=$_POST['タイトル'];
$content=$_POST['コンテンツ'];
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>";
}
?>
他には何も知りません。送信された $_POST 配列に $id がどこから来たのかだけが気になります。出力したけど見てなかったみたい
それは<seript>ではなく、<script>です。
echo "<seript>alert('Submission success');location.href='add.html';</seript>"; このステートメントを詳しく見て、エラーを見つけてください。