I got my mysql server running
how do I use mySQL to created for useronline..
Create MySQL Table...
Table structure for table 'useronline'
CREATE TABLE useronline (
timestamp int(15) DEFAULT '0' NOT NULL,
ip varchar(40) NOT NULL,
file varchar(100) NOT NULL,
PRIMARY KEY (timestamp),
KEY ip (ip),
KEY file (file)
);
I can log into phpmyadmin.. but I don't know what to do next.
anyhelp?