Estoy intentando k cada vez k se añada una noticia, esta me cree automaticamente un post en el foro phpbb2, pero no soy capaz de conseguirlo, alguien me puede ayudar? aki el codigo...
Código PHP:
if ($_REQUEST['do'] == 'add_news_confirm')
{
$rs = $db->Execute("SELECT * FROM `sp_news` WHERE `id` = '-1'");
$record = array(
'title' => $_REQUEST['title'],
'author' => $_REQUEST['author'],
'section' => $_REQUEST['section'],
'intro' => $_REQUEST['intro'],
'text' => $_REQUEST['text'],
'date' => $_REQUEST['date'],
'newsimage' => $_REQUEST['newsimage']
);
$sql = $db->GetInsertSQL($rs, $record);
$db->Execute($sql);
$db->Execute("INSERT INTO phpbb_topics (forum_id, topic_title, topic_poster, topic_time) VALUES ({1}, {$title}, {1}, $date)");
SPMessage('Success | News has been successfully added.', 'news.php');
}