Allow static pages to contain iframe elements. This is necessary for twitch embedding.
Allow static pages to contain iframe elements. This is necessary for twitch embedding.

File last commit:

c1e4c31f199d
293d44211c32
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;
}
?>