Quote:
Originally Posted by KirbyDE
You should change
PHP Code:
while( $news = mysql_fetch_array($data) ) {
$postdate = vbdate("F d, Y", $news['dateline']);
To
PHP Code:
while( $news = $DB_site->fetch_array($data) ) {
$postdate = vbdate("F d, Y", $news['dateline'], false, false);
Otherwise you might run into mySQL and locale problems. Furthermore it's normally not a good idea to use hard-coded date/time formats.
And for your F-Problem:
It should be
PHP Code:
$news['pagetext'] = parse_bbcode2($news['pagetext'], no, yes, $allowsmilie, yes);
Otherwise you are overwriting the whole $news array 
|
I love you Kirby. Thx SO much.

Everything works perfectly, ty!