add.php ファイルの内容
<?php
//接続データベース ファイルをインポートします
include ('conn.php');
//次のことを確認しますユーザーの送信ボタン
if(isset($_POST['submit'])){
- $title=$_POST['title'];
$content=$_POST['コンテンツ'];
$sql="メッセージ(id,user,title,content,lastdate)values('' ,'$user','$title','$content',now())に挿入";
mysqli_query($conn,$sql);
// echo "<script>alert('正常に追加されました ');history.go(-1)</script>";
echo"<script> ;alert('メッセージ成功');location.href='liu.html'</script>";
}else{
echo "失敗";
}
?>
##liu.html コンテンツ
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>最初のMYSQL查询留言本</title>
<script type="text/javascript" src="http://www.francescomalagrino.com/BootstrapPageGenerator/3/js/jquery-2.0.0.min.js"> ;</script>
<script type="text/javascript" src="http://www.francescomalagrino.com/BootstrapPageGenerator/3/js/jquery-ui"></script>
<link href="http://www.francescomalagrino.com/BootstrapPageGenerator/3/css/bootstrap-combined.min.css" rel="stylesheet" media="screen">
<script type="text/javascript" src="http://www.francescomalagrino.com/BootstrapPageGenerator/3/js/bootstrap.min.js"></script>
<?php include ("add .php")?>
</head>
<body>
<?php include ("add.php")?>
<div class="container -fluid">
<div class="row-fluid">
<div class="span12">
<div class="page-header">
<h1>
第一MYSQL查询留言本 <small>V1.0</small>
</h1>
### & lt;/div>:ビジュアルレイアウトテンプレートでは、テンプレート内のテキストをクリックして変更するか、ポップアップ編集ボックスをクリックしてリッチテキストを変更できます。ブロックをドラッグしてソートします。;
<table class="table table-border">
<thead>
<tr>
<th>
ID
</th>
<th>
名字
</th>
<th>
标题
</th>
<th>
内容
</th>
</tr>
</thead>
<tbody>
<tr class="success">
<td>
ID
</td>
<td>
TB - 月刊
</td>
<td>
01/04/2012
</td>
<td>
承認済み
</td>
</tr>
</tbody> ;
</table>
<form action="add.php" method="post">
<fieldset>
<legend>表单项</legend>
<label>名前</label><input type="text" name="user" required/>
<label>标题</label><input type="text" name="title" required/>
<label>留言内容</label><textarea name="content" rows="5"cols="30"></textarea>
<hr>
<button type="submit" class="btn" name="submith">送信</button>
</div>
</div>
</ body>
</html>
質問: そうです。 、まだ提出を完了したとは感じていませんでしたが、else
に行きました。
似火年华2018-02-14 16:20:27
SQL ステートメントが正しいかどうか $sql="insert into message(id,user,title,content,lastdate)values('','$user','$title','$content',now ( ))";
values(" これは間違っていますか?