PHP interesse |
|
Hallo ik heb de volgende code:
<?php
$qnieuws = mysql_query("
SELECT *
DATE_FORMAT(tijd, '%H:%i:%S %d-%m-%Y') AS datum
FROM nieuws
ORDER BY tijd
DESC LIMIT 0,10", $connect1) OR DIE (mysql_error());
?>
<?php SELECT * DATE_FORMAT(tijd, '%H:%i:%S %d-%m-%Y') AS datum FROM nieuws ORDER BY tijd ?>
maar nu krijg ik: 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 'DATE_FORMAT(tijd, '%H:%i:%S %d-%m-%Y') AS datum FROM nieuws ORDER BY tijd D' at line 2
|