Re: Wie kann ich ein Chat box erstellen im forum ?
Verfasst: 16.08.2009 16:59
aber dann kommt immer ein fehler
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Sagt wer?Fabsi112 hat geschrieben:job bröse muss man bezahlen
Code: Alles auswählen
$sql = 'SELECT COUNT(tb_post_id) AS num_tb_posts FROM ' . TB_TABLE;
$result = $db->sql_query($sql);
$total_tb_posts = (int) $db->sql_fetchfield('num_tb_posts');
// The following assigns all _common_ variables that may be used at any point in a template.
$template->assign_vars(array(
'TB_AUTH' => $config['tb_auth'],
'TB_REFRESH' => $config['tb_refresh'] * 1000,
'TB_HEIGTH' => $config['tb_heigth'],
'TB_MAXLENGTH' => $config['tb_maxlength'],
'TB_BUTTONS' => $config['tb_buttons'],
'TB_BBCODE' => $config['tb_bbcode'],
'TB_IMG' => $config['tb_img'],
'TB_FLASH' => $config['tb_flash'],
'TB_FONT' => $config['tb_fsize'],
'TB_SMILIES' => $config['tb_smilies'],
'TB_ALL_POSTS' => $total_tb_posts,