Make a stripped-down stylesheet for the editor to use.
Make a stripped-down stylesheet for the editor to use.

File last commit:

c1e4c31f199d
d3add6d85bd7
Show More
rss.php
14 lines | 220 B | text/x-php | PhpLexer
Add most necessary files for admin interface.
r1 <?php
function rsspost($body, $url)
{
global $mtdb;
$mtdb->query('INSERT INTO rss_comment (body, url)
VALUES ("'.mysql_real_escape_string($body).'",
"'.mysql_real_escape_string($url).'")');
return true;
}
?>