Is their way to have a script pull only the last entry that was enterd into the db? Thanks Anthony
by "last" do you mean "most recent" or the final record?
if you mean most recent, then if you date stamped every record, or even autonumbered a primary key, that seems like it should be possible.
I mean the most recent..
well,
a very cumbersome way would be to select all the records, order by date descending and then take the first record.
another way would be to create text file that records the ID of the most recent record, then read the file and fetch the record.
I have the same problem. but isn't there a more efficient way of doing so?