<?
include "./auth.inc.php";
if ($text){
#add to database and exit
$isql="INSERT INTO Questions(Question, Asker, Qtime)
VALUES('$text','$PHP_AUTH_USER',now())";
mysql_query($isql);
print "Your question has been put before the Oracle.";
print '<P><a href="faq.php">Back to the FAQ</A>';
exit;
}
?>
<FORM>
Ask a Question!
<BR>
<TEXTAREA cols=50 rows=12 NAME=text></TEXTAREA><BR>
<INPUT TYPE=SUBMIT>
</FORM>