Siehe hier: http://www.latinoportal.de/portal/acronyme.php
das original script:
Code: Alles auswählen
<?php
/***************************************************************************
* Abkürzungen / Acronyme
* ------------------------
* Version : Version 1.00 - 01.01.2003
* copyright : (C) 2003 AWSW
* URL : http://www.awsw.de
* email : awsw@awsw.de
*
* $Id: acronyme.php,v 1.00 2003/01/01 AWSW 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);
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
$template->set_filenames(array(
'body' => '../acronyme_body.tpl')
);
$template->pparse('body');
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
?>
http://www.latinoportal.de/portal/linkliste/index.php
Ich habe schon mal angefangen, komme aber aufgrund mangelnder php-Kenntnisse nicht weiter:
Code: Alles auswählen
<?php
/***************************************************************************
* Linkliste einfügen
* ------------------------
* Version : Version 1.00 - 18.12.2003
* copyright : (C) 2003 Matthias Stauch
* URL : http://www.latinopotal.de
* email : xxx
*
***************************************************************************/
define('IN_PHPBB', true);
$phpbb_root_path = './'; // <-- !!
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
/***Ist das soweit richtig???***/
/***Ab hier habe ich keine Ahnung mehr ...***/
include($phpbb_root_path . 'linkliste/index.php'.$phpEx);
$template->pparse('body');
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
?>
Danke.
Matthias