Hey guys, I have a very strange problem. I try to query my dbase and want to display 10 records at once and then with a 'next' link the next 10 records. The problem is that when I add a limit the dabase returns none at all!
This snip returns OK
FROM $DbTable WHERE Keywords LIKE '%plop%' LIMIT 10");
This snip returns nothing at all?
FROM $DbTable WHERE Keywords LIKE '%plop%' LIMIT 1, 10");
Any suggestions?
Cheers,
Ton