Hi, Is there a way to auto delete mySql entries after a certain amount of time has passed?
You'd have to do a cron job to have timed things like this. Timestamp the records, then have a cron that runs a script that deletes all records older than 3 days or whatever.