Hey,
spiele grad bisschen mit Smarty rum und zwar soll er mir alle news ausgeben nicht nur eine..
aber in diesem template
könnt ihr mir helfen?
danke,
gruß,
flo
spiele grad bisschen mit Smarty rum und zwar soll er mir alle news ausgeben nicht nur eine..
PHP-Code:
$news_show_sql = mysql_query("SELECT id, nick, news_id, titel, content_1, content_2, poster_id, link_http, Datum FROM news JOIN user ON poster_id=id");
while($news_show = mysql_fetch_object($news_show_sql)){
$tpl->assign(array(
"news_id" => $news_show->news_id,
"news_nick" => $news_show->nick,
"news_title" => $news_show->titel,
"news_show" => $tpl->fetch("news_show_while.tpl")));
}
echo mysql_error();
$tpl->assign("content", $tpl->fetch("news_show.tpl"));
PHP-Code:
$tpl->fetch("news_show_while.tpl");
danke,
gruß,
flo
Kommentar