@bigreefer
you have forgot this spell
" ;" after ect...';
<-
PHP Code:
CREATE TABLE _statistik_zaehler (
Zaehler_f?r varchar(80) NOT NULL default '',
Summe int(10) NOT NULL default '0',
PRIMARY KEY (Zaehler_f?r)
) TYPE=MyISAM COMMENT='Zaehler f?r Hits, Besucher, ect...';
The other problem.
Search in statistik.php for
PHP Code:
$alle_avantars = number_format($alle_avantars['avantar']); //Alle Benutzer mit Avantar
replace it with
PHP Code:
$alle_avantars = intval($alle_avantars['avantar']); //Alle Benutzer mit Avantar
and found
PHP Code:
$alle_profilpics = number_format($alle_profilpics['profilpic']); //Alle Benutzer mit Profilbild
replace it with
PHP Code:
$alle_profilpics = intval($alle_profilpics['profilpic']); //Alle Benutzer mit Profilbild
I hope this will help.
PcFreak