-1
MySQLのコメントテーブルに格納されている情報を入力に表示しようとしていますが、問題があります。 enterComment
という名前の入力は私のDBにデータを挿入し、それはshowComment
入力にリダイレクトされます。データベースのレコードを表示する
HTML:
form action='takedata.php' method='POST'>
<input type='text' id='enterComment' name='enterComment' width='400px' placeholder='Write a comment...'>
<input type='submit' id='combuton' name='comButon' value='Comment!'>
<input type='text' id='showComment' name='showComment'>
</form>
PHP:
<?php include "mysql.php"; ?>
<?php
if (isset($_POST['comButon'])){
$enterComment = strip_tags($_POST['enterComment']);
if($enterComment){
$addComment = mysql_query("INSERT INTO comments(comment) VALUES('$enterComment')");
if($addComment==1)
//INSERT INTO showComment input;
}
}
?>
VIEWのコードはどこですか? – Hassaan
PDOまたはmysqliを使用してデータベースに接続する方法の記事をお読みください。 –