Move admin CSS into a subdirectory.
Move admin CSS into a subdirectory.

File last commit:

a5239f130d1d
64df00e7cb3d
Show More
rss.php
15 lines | 253 B | text/x-php | PhpLexer
<?php
function rsspost($body, $url)
{
global $dbConnection;
$sql = 'INSERT INTO rss_comment (body, url) VALUES (?, ?)';
$stmt = $dbConnection->prepare($sql);
$stmt->bindValue(1, $body);
$stmt->bindValue(2, $url);
return $stmt->execute();
}
?>