Original geschrieben von brauni54
wenn ja, dann hab ich nen syntax error
wenn ja, dann hab ich nen syntax error
echo("<table cellpadding=\"0\" width=\"95%\"><tr>");
$codetreffercode=0;
$query2="SELECT * FROM $sitetable WHERE STR_TO_DATE(letzterlogin,GET_FORMAT(DATE,'EUR'))
=CURDATE()
and code='1' and bild !='' and bild !='$keins'
and bildsehen='0' ORDER BY siteid DESC LIMIT 0,4";
$result2=mysql_db_query($dbname,$query2,$conn) or die(mysql_error());
while($date=mysql_fetch_array($result2))
//schon mal daran gedacht Umbrüche in deine Querys einzufügen?
//beispiel
$query2="SELECT
*
FROM $sitetable
WHERE STR_TO_DATE(letzterlogin,GET_FORMAT(DATE,'EUR'))=CURDATE()
and code='1'
and bild !=''
and bild !='$keins'
and bildsehen='0'
ORDER BY siteid DESC
LIMIT 0,4";
//dann zeigt dir mysql_error auch nicht nur die zeilennummer 1 an,
//sondern da wo er den Fehler bemerkt hat.
Kommentar