At the moment, I have a Javascript (JQuery) front-end which periodically makes requests to a seperate, PHP script which returns posts.
For the sake of efficiency, however, I'd like to simply add new results to the array, not even looking at existing posts.
As it stands, I've attempted to do so with times (i.e. "SELECT * FROM table WHERE time >= $time"), however, have realized its limitations and inability to conform with my initial idea.
Are there any ideas out there? I'd much prefer to do this without having to reform my scripts into using XML to transfer the data - however, if such is the only case, I'll be happy to oblige. :)