Ben bir html textfield gelen verileri alır ve phpmyadmin bir veritabanına kaydetmek bir comment.php senaryoyu uygulamak çalışıyorum. Ben uzun ve sorunsuz yeni kullanıcıları ekler, hangi registration.php uygulanmaktadır. Şimdi basit comment.php, bir yorum tabloya şey eklemeden değildir.
İşte comment.php için kod:
<?php
session_start();
require('connect.php');
$id = $_SESSION['id'];
$comment = $_POST['comment'];
$sql = "INSERT INTO `comp595ose`.`comments`
(`id`, `comment`)
VALUES
(NULL, \'This is not working\');";
$add_comment = mysql_query($sql);
echo $comment." ";
echo $id;
?>
myphpadmin yılında 'comments' tablo sadece iki alanı, id (AUTOINCREMENT) ve yorumu var.