I am trying to install the visitor counter plugin, and need help getting the correct information in my mysql database. The plugin is here:
http://weblogtoolscollection.com/b2-img/top10.zip
I am trying to insert this snippet into a table, (however, I am not familiar with mysql very much at all):
use <your_wpdatabase>;
create table mostAccessed
(
postnumber int not null,
cntaccess int not null,
primary key(postnumber),
unique id(postnumber)
);
As I mentioned, this poses a problem because I don't really know much about mysql...like, nothing. How can I create a new table in mysql in command line and insert this information? Any help is appreciated.
Thanks