Add Your Library Story
include ('dbconnect.php');
if (isset($_POST['submit'])) {
if (!get_magic_quotes_gpc()) {
$_POST['fname'] = addslashes($_POST['fname']);
$_POST['lname'] = addslashes($_POST['lname']);
$_POST['comment'] = addslashes($_POST['comment']);
}
$insert = "INSERT INTO story (fname,lname,comment) VALUES ('".$_POST['fname']."','".$_POST['lname']."','".$_POST['comment']."')";
$add_story = mysql_query($insert);
?>
Your story has been added.
Note: Stories will not show up on our website until they have been reviewed and judged suitable for a general audience.