Can someone please show me how to pouplate the following table with my own tags, ids and count numbers using the phpMyAdmin or a MySQL command prompt?
CREATE TABLE tags ( id int(11) NOT NULL AUTO_INCREMENT, PRIMARY KEY(id), tag varchar(100) NOT NULL, count int(11) NOT NULL DEFAULT '0' );