PHP ファイルを投稿するための PHP 開発掲示板ページ
掲示板ページにphpファイルを送信します
<?php include ("conn.php"); $id=$_POST['id']; $user=$_POST['user']; $title=$_POST['title']; $content=$_POST['content']; if ($_POST['submit']){ $sql="insert into message(id,user,title,content,lastdate)values('','$user','$title','$content',now())"; mysql_query($sql); echo "<script>alert('提交成功!返回首页。');location.href='add.html';</script>"; } ?>
データベース接続ファイルを呼び出し、送信をクリックしたときに投稿送信メソッドを使用し、IDユーザータイトルコンテンツlasdataにSQL挿入を使用しますメッセージテーブルにファイル
echo "<script>alert('Submission success! Return to the home page.'); location.href='add.html';</script>";
を書き込みますjsを使用してポップアップウィンドウにプロンプトを表示してリターンすることです。
難易度: 使い方と入手方法
$_POST