私のコードは次のようになります。ページの更新時にその複製を記録すると、
このページをリフレッシュすると、この問題を回避する方法が最後の値を複製します。これはquoa.phpコードです!私は別個のものを追加しようとしましたが、うまく機能していますが、そこにまだ使用上の問題はありませんか?ページを更新するときは、すべてのフィールドが空になり、そのように、あなたの入力フィールドにHTMLの検証を実行する必要があり
phpcode
<?php
/* connection inclution code will be here */
include 'connection/conn.php';
//defining the variables to the text fields
$question = $_POST['qst'];
$questionext = $_POST['qsttextarea'];
//validating the text fields , if there is no text show the msg after else
if(isset($_POST['qst']) && isset($_POST['qsttextarea']))
{
} else {
$pleasefill = "please fill all the fields";
}
//sending data to the database
$mysqlinsert = "INSERT INTO questions(qsttable,qstext) VALUES ('$question','$questionext')";
//header("Location: success.php");
if (!mysqli_query($connection,$mysqlinsert)) {
echo " record not inserted";
} else {
$submited = (" your question is submited please wait for the response");
}
//getting data from the database
if ($data = mysqli_query($connection,"select distinct * from questions")); {
}
?>
ショー・レコード・コード
<?php
while($row=mysqli_fetch_array($data)) {
echo '
<div id="question_div"> <span class="fa fa-chevron-right" id="spantick"></span> '.'<a href="#" id="qsttable">'.$row['qsttable'].'</a> <br />'.'<p id="qstext">'.$row['qstext'].' </p> </div> ' ;
}echo '<a href="question.php?id='.$row['qid'].'"> Read more </a>';
?>
挿入後、表示レコードページにリダイレクトする必要があります。 –