Seite 2 von 2

Verfasst: 23.09.2003 15:09
von Wubbel
llllllllllllllllllllllloooooooooooolllllllllllllllllllllllllllll
Hab ich schon.
Da sagt er get_db_stat();
gibts net

Verfasst: 23.09.2003 16:13
von Schumi
Die Funktion kannst du auch nur innerhalb von phpBB benutzen.

Verfasst: 23.09.2003 17:38
von Wubbel
Ja super! Könnte mir dann einer nen code basteln so wie am anfang gefragt?

Verfasst: 23.09.2003 17:59
von Schumi
Aber immer doch :wink:

Code: Alles auswählen

<?php

define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);


$total_posts = get_db_stat('postcount');


//
// Start output of page
//
define('SHOW_ONLINE', true);
$page_title = $lang['Index'];
include($phpbb_root_path . 'includes/page_header.'.$phpEx);


//
// Generate the page
//

include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
?>
Die Datei kommt ins root-Verzeichnis des Forums. Um das ganze dann auszugeben machst du folgendes:

Code: Alles auswählen

<?
//der Code deiner externen Datei....
include('./pfad_zum_forum/bla.php');

echo $total_posts;
?>

Verfasst: 24.09.2003 13:49
von Wubbel
Danke.
Werde ich mal ausprobieren!