<?
session_start();
$link = mysql_connect('localhost','chaotici_commu', 'dragon')
or die("Could not connect");
mysql_select_db('chaotici_chaotic')
or die("Could not select database");
$my_quadrant = $_SESSION['edithtml'];
$email = $_POST['email'];
$message = $_POST['comments'];
$update ="INSERT INTO users (comment) values ($message)";
mysql_query($update) or die ("Could not add data to the table");
?>
THis code wouldn't create the file in the table......help me whatis wrong with this code.