Yes, and if you follow every thread here you could have seen webuxer several times recently (since September 2016).
It's true the norm at least in the Foxpro section is to have a user handle with the real name. There are some exceptions from the rule and it is surely not a site rule. Even in some private invite only forums, several members don't have a real name handle.
Back on topic: As Tore Bleken already said, your DBF needs a date column to be able to filter this, there is no hidden data about the creation or update times of records in DBF files, there is no automatic transaction log, so you will have to have such a column. To let it contain the date/datetime of creation automatically, it needs to be a DBC table asa that allows default values. You then simply define a date column with default value DATE() or a datetime column with default DATETIME(). You need to do as Mike says for DBFs without default values as feature, i.e. for free and fox3x tables.
And then you have a basis not only for querying data in a given time span, but also deleting data from a time span or except a timespan, that's merely the negated condition.
I repeat what's already said, albeit going a bit into detail about prerequisites and reasons. Everything Tore said technically already remains true, too.
Bye, Olaf.