My Error info isnt being clear enough for me to understand the problemIs there anything worng here so i can continue on lookng for the probelm:
$sql = "INSERT INTO boards (
title, genre, creator, tagline, intro, remessage, visability, recruitment, reqsheet, reqdice, reqgroup, ppweek)
VALUES (
$title, $genre, $creator, ". $tagline . ", $scene, $message, $vis, $rcrt, $sheet, $dice, $group, $ppw)";
if ($conn->query($sql) === TRUE)
{
echo "New record created successfully";
}
else
{
echo "<br>Error: " . $sql . "<br>" . $conn->error;
}