If MySQL 3.23.59 table is
create table formtokens
-> (ft_token char(34) not null unique,
-> ft_data char(255),
-> ft_touched timestamp(14),
-> index idx_ft_token (ft_token));
What is the PHP code to tell MySQL (via a function) to drop entries in this table that are older than 60 minutes??? It's harder than it appears. Do I convert to unix_timestamp!?
Surfinbox.com Business Internet Services - National Dialup, DSL, T-1 and more.
create table formtokens
-> (ft_token char(34) not null unique,
-> ft_data char(255),
-> ft_touched timestamp(14),
-> index idx_ft_token (ft_token));
What is the PHP code to tell MySQL (via a function) to drop entries in this table that are older than 60 minutes??? It's harder than it appears. Do I convert to unix_timestamp!?
Surfinbox.com Business Internet Services - National Dialup, DSL, T-1 and more.