Skip to content

Instantly share code, notes, and snippets.

View truekenny's full-sized avatar

Sasha truekenny

  • Moscow, Russia
View GitHub Profile
@Ereza
Ereza / submit_post.php
Last active July 12, 2022 01:14
Sample script to add a new post to a phpBB forum as a specific user
<?php
define('IN_PHPBB', true);
$phpbb_root_path = '../forum/';
$phpEx = substr(strrchr(__FILE__, '.') , 1);
include ($phpbb_root_path . 'common.' . $phpEx);
include ($phpbb_root_path . 'includes/functions_posting.' . $phpEx);
$user_id = 755;
$forum_id = 32;
$subject = 'Missatge de prova';