ホームページ >バックエンド開発 >PHPチュートリアル >初心者はフロントフォームから値を取得し、データベースに入力します
初心者は、フロントフォームから値を取得してデータベースに入力するのを手伝ってください
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> $db=mysql_connect('localhost','root','','news1'); $query="insert into news (title,author,datetime,content)values('$title','$author','$datetime','$content')"; $result=mysql_query($query); if($result){ echo mysql_affected_rows()."row(s) insert into database.";} else{ echo "An error has occurred.The item was not added.";}