Okay.
So i have a table that's being used on my website using PHP to pull out the contents.
I need it to wipe the table every day at 4am. How do i do this?
Structure
CREATE TABLE IF NOT EXISTS chat
(
id
int(255) NOT NULL AUTO_INCREMENT,
message
longtext NOT NULL,
by_user
longtext NOT NULL,
is_admin
longtext NOT NULL,
color
longtext NOT NULL,
PRIMARY KEY (id
)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=144 ;