Sorry voor de late reactie., na je PB ben ik weer komen zien

...
Je maakt dus een php bestand, met onderstaande code in. Waar ik het aangeduid heb, moet je jouw php en html code plaatsen.
Deze wordt daarna in het "Informatief" kader gestoken. Als je de titel van het kader wilt wijzigen, zit er niets anders op dan een nieuwe php functie te maken of de html te kopiëren.
het is wel een tijdje geleden dat ik zoiets heb gedaan, maar normaal gezien moet dit wel werken....
Succes!
Code: Selecteer alles
<?php
/***************************************************************************
*
*
* begin : Saturday, Feb 13, 2001
* copyright : (C) 2001 The phpBB Group
* email : support@phpbb.com
*
* $Id: groupcp.php,v 1.58.2.27 2006/12/16 13:11:24 acydburn Exp $
*
*
***************************************************************************/
/***************************************************************************
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
***************************************************************************/
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
//
// Start session management
//
$userdata = session_pagestart($user_ip, PAGE_GROUPCP);
init_userprefs($userdata);
//
// End session management
//
@ob_start();
/*
PLAATS HIER ONDER AL JE PHP EN HTML CODE
*/
?>
<strong>Voorbeeld....</strong>
<?php
echo "blablabla";
/*
PLAATS HIER BOVEN AL JE PHP EN HTML CODE
*/
$output = @ob_get_contents();
@ob_end_clean();
message_die(GENERAL_MESSAGE, $output);
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
?>