Servus Leute,
also ich hab ein Problem,
Folgende Abfrage funktioniert ohne probleme:
$abfrage = mysql_query (" select * from termine WHERE datum >= '$akt_datum_format' GROUP BY datum ORDER BY datum");
echo mysql_error ();
while ($row_datum_termin = mysql_fetch_array ($abfrage)){
Ich will, die Terminanzeige mit freischaltung regeln,
dafür hab ich das Feld check in meiner Tabelle,
Geänderter SQL-Befehl:
$abfrage = mysql_query (" select * from termine WHERE datum >= '$akt_datum_format' AND check = '1' GROUP BY datum ORDER BY datum");
echo mysql_error ();
while ($row_datum_termin = mysql_fetch_array ($abfrage)){
Er schreibt aber diesen Fehler hin wenn ich die Seite aufrufe:
You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'check = '1' AND datum >= '1117576800' GROUP BY datum ORDER BY d
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /customers/donau-tigers.de/donau-tigers.de/httpd.www/module/termine/termine.php on line 118
also ich hab ein Problem,
Folgende Abfrage funktioniert ohne probleme:
$abfrage = mysql_query (" select * from termine WHERE datum >= '$akt_datum_format' GROUP BY datum ORDER BY datum");
echo mysql_error ();
while ($row_datum_termin = mysql_fetch_array ($abfrage)){
Ich will, die Terminanzeige mit freischaltung regeln,
dafür hab ich das Feld check in meiner Tabelle,
Geänderter SQL-Befehl:
$abfrage = mysql_query (" select * from termine WHERE datum >= '$akt_datum_format' AND check = '1' GROUP BY datum ORDER BY datum");
echo mysql_error ();
while ($row_datum_termin = mysql_fetch_array ($abfrage)){
Er schreibt aber diesen Fehler hin wenn ich die Seite aufrufe:
You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'check = '1' AND datum >= '1117576800' GROUP BY datum ORDER BY d
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /customers/donau-tigers.de/donau-tigers.de/httpd.www/module/termine/termine.php on line 118
Kommentar