Yeah this is weak I know, but gotta learn it some time...
Im connecting to a access 97 database using odbc, now everything works just fine.
How can I limit the results?
with mysql and php I can add the limit command within the SQL statement, but the limit command is not working with access, Any ideas?
ive tryed this
$query = "SELECT * FROM News Order By NewsID Desc LIMIT 0,5";
and this...
$query = "SELECT * FROM News Order By NewsID Desc LIMIT 5";
I just want the last 5 records