Also ich habe jetzt news.php kopiert und eine clannews.php erstellt.
Dadrinne habe ich das:
$abf = "SELECT
a.news_title as title,
a.news_id as id,
DATE_FORMAT(a.news_time,'%d. %m. %Y') as datum,
DATE_FORMAT(a.news_time,'%W') as dayofweek,
a.news_kat as kate,
a.news_text as text,
b.name as username
FROM prefix_news as a
LEFT JOIN prefix_user as b ON a.user_id = b.id
WHERE ".$_SESSION['authright']." <= a.news_recht
OR a.news_recht = 0
ORDER BY news_time DESC
LIMIT ".$anfang.",".$limit;
durch das:
$abf = "SELECT
a.news_title as title,
a.news_id as id,
DATE_FORMAT(a.news_time,'%d. %m. %Y') as datum,
DATE_FORMAT(a.news_time,'%W') as dayofweek,
a.news_kat as kate,
a.news_text as text,
b.name as username
FROM prefix_news as a
LEFT JOIN prefix_user as b ON a.user_id = b.id
WHERE (".$_SESSION['authright']." <= a.news_recht
OR a.news_recht = 0) AND kate = 'Clannews'
ORDER BY news_time DESC
LIMIT ".$anfang.",".$limit;
ersetzt!
Dann habe ich einen Kopie von news.htm erstellt und diese clannews.htm genannt. Dann habe ich alle sich darin befindenden ?news in ?clannews umbenannt.
Doch wo muss jetzt
$tpl = new tpl('clannews');
hin?
Ich habe das jetzt schon in meiner Index.htm eingebunden, so dass rechts unten Clannews in der Navigation ist. Doch wenn ich jetzt darauf klicke steht in der Seite
Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in /usr/export/www/hosting/f4xd/include/includes/func/db/mysql.php on line 48
Was habe ich vergessen? Und wie trage ich jetzt News da ein, es gibt ja keine neue Rubrik im Adminmenü...
MfG f4xd