i am developing a comment box with php and mysql,but my problem now is how to post the comment after user has enter their comment.so far i my php and mysql that save the comment in the database,but i want it to be visible on my webpage after it is save to database,i don't know the code for that,i need help.
cm.php
db.php
Code:
<!DOCTYPE html> <html> <head> <title> commenting system </title> </head> <body> <form action = "cm.php" method = "POST"> <input type = "text" name = "fname" placeholder = "Name"><br><br> <input type = "text" name = "website" placeholder = "website"><br><br> <textarea type = "text" name = "scomment" rows = "6" col = "250" placeholder = "comment here...."> </textarea> <button type = "submit">SUBMIT</button> </form> </body> </html>
Code:
<?php
include 'db.php';
$fname = $_POST['fname'];
$website = $_POST['website'];
$scomment = $_POST['scomment'];
$sql = "INSERT INTO client (fname, website, comment) VALUES ('$fname', '$website', '$scomment')";
$result = $con->query($sql);
header("Location:index.php");
?>
Code:
<?php
$con = mysqli_connect("localhost", "root", "", "comment");
if(!$con){
die("connection error".mysqli_connect_error());
}
Comment