Click here to Skip to main content
15,895,667 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
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.

What I have tried:

HTML
<pre><!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>

PHP
<pre lang="PHP"><pre lang="PHP"><pre lang="PHP"><pre lang="PHP"><pre lang="PHP">
cm.php

<?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");

?>


db.php

<?php

$con = mysqli_connect("localhost", "root", "", "comment");

if(!$con){
    die("connection error".mysqli_connect_error());
}

?>
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900