Merge pull request #9 from mt-admin spoiler-style...
Merge pull request #9 from mt-admin spoiler-style Static-page spoilers and resizing.

File last commit:

c1e4c31f199d
1ec8d7dbefa5 merge
Show More
rss.php
14 lines | 220 B | text/x-php | PhpLexer
<?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;
}
?>