66 lines
1.6 KiB
PHP
66 lines
1.6 KiB
PHP
<?php
|
|
$db = new SQLite3('ask.db');
|
|
|
|
$user = $db->query("SELECT * FROM users WHERE username = '" . $_GET["q"] . "';")->fetchArray(SQLITE3_ASSOC);
|
|
|
|
$db->exec("CREATE TABLE IF NOT EXISTS questions(
|
|
id INTEGER PRIMARY KEY,
|
|
user INTEGER,
|
|
by INTEGER,
|
|
question TEXT
|
|
);");
|
|
|
|
//if(!$db->querySingle("SELECT * FROM users where id = 0;")){
|
|
// echo "ta;yf";
|
|
// $db->exec()
|
|
//}
|
|
//else{
|
|
// echo "tft;y";
|
|
//}
|
|
|
|
if($validUser){
|
|
header("Location: /"); die();
|
|
}
|
|
|
|
$errorMsg = "";
|
|
if(isset($_POST["post-submit"])){
|
|
if($_POST["post-text"] == "") $errorMsg = "The question can't be blank.";
|
|
else if(strlen($_POST["post-text"]) > 400) $errorMsg = "The question can't bee longer than 400 characters";
|
|
else{
|
|
$u = $user["id"];
|
|
$by = 0;
|
|
$question = htmlspecialchars($_POST["post-text"]);
|
|
|
|
// Insert user into DB
|
|
$db->exec("INSERT INTO questions(user,by,question) VALUES ('$u','$by','$question');");
|
|
unset($_POST["post-text"]);
|
|
}
|
|
}
|
|
?>
|
|
|
|
<html>
|
|
<head>
|
|
<title><?= $user["username"] ?> | LibreCat</title>
|
|
</head>
|
|
<body>
|
|
<h2><?= $user["username"] ?></h2>
|
|
<p><?= $user["bio"] ?></p>
|
|
|
|
<form name="input" action="" method="post">
|
|
<p>Ask me anything</p>
|
|
<textarea id="post-text" name="post-text"></textarea>
|
|
<br/>
|
|
<?php if(isset($errorMsg)) echo "<p>$errorMsg</p>\n"; ?>
|
|
<input type="submit" name="post-submit"/>
|
|
</form>
|
|
|
|
<?php
|
|
$qs = $db->query("SELECT * FROM questions WHERE user = '" . $user["id"] . "' LIMIT 0, 10;");
|
|
while($current = $qs->fetchArray(SQLITE3_ASSOC)){
|
|
echo("<h3>". $current["by"] ."</h3>");
|
|
echo("<p>". $current["question"] ."<p>");
|
|
}
|
|
?>
|
|
</body>
|
|
</html>
|