I'm seeing two errors:
Quote:
if ($title && $category && question) {
$query = "INSERT INTO questions (title, author, date, question, category) VALUES ('$title', '$author', '$date', '$queston', '$category')";
$result = @mysql_query($query);
|
1. In the "if" statement, you need a $ on "question"
2. in the values, you mistyped "question" without an "i".
Hope this helps.