auto_increment-Problem

ICH HABS!

So gehts:
Code:
if($newsaction == "getnews"){
 $thisNews=$newscount-1; 

 $newsabf = mysql_query("SELECT * FROM mm_news LIMIT $thisNews,1", $dblogin);
 $newsabfres = mysql_fetch_assoc($newsabf);

 $newshhl = $newsabfres['headline'];
 $newshdatee = $newsabfres['date'];

 $newshdate = date("d.m.Y", $newshdatee);
 $newshtime = date("H:i", $newshdatee);
 
 $newst = $newsabfres['content'];
 $newsh = "Titel: $newshhl%0DAm: $newshdate Um: $newshtime Uhr";

 $echos = "&newse=$newst
&newseh=$newsh
&getnewsdone=true";

 echo $echos;
}

Super und danke für die schnelle Hilfe!
 
Zurück