Clean up extraneous spaces at the ends of lines.
Clean up extraneous spaces at the ends of lines.

File last commit:

2f20c7105050
881a86f051f9
Show More
rss.php
14 lines | 247 B | text/x-php | PhpLexer
<?php
function rsspost($body, $url)
{
global $mtdb;
$mtdb->query('INSERT INTO rss_comment (body, url)
VALUES ("'.mysqli_real_escape_string($mtdb->link, $body).'",
"'.mysqli_real_escape_string($mtdb->link, $url).'")');
return true;
}
?>