Gazelle/sections/questions/take_ask_question.php
2013-10-28 08:01:14 +00:00

28 lines
569 B
PHP

<?
DEFINE('MAX_QUESTIONS', 50);
authorize();
$DB->query("SELECT COUNT(1) FROM user_questions WHERE UserID = '$LoggedUser[ID]'");
list($Results) = $DB->next_record();
if ($Results >= MAX_QUESTIONS) {
error("You have asked too many questions for the time being.");
}
$Question = db_string($_POST['question']);
if (empty($Question)) {
error("No question asked");
}
$UserID = $LoggedUser['ID'];
$Date = sqltime();
$DB->query("
INSERT INTO user_questions
(Question, UserID, Date)
VALUES
('$Question', '$UserID', '$Date')");
header("Location: questions.php");