Installing script to create a table - phpmyadmin

how or where do I input a script to create a table in phpmyadmin

script…

CREATE TABLE auth (
userid
int(4)
unsigned
zerofill
DEFAULT ‘0000’
NOT NULL
auto_increment,
username varchar(20),
userpassword varchar(20),
PRIMARY KEY (userid)
);

Click on the SQL link on the top nav bars and past your SQL code there and run it… or just use the create table option… There’s plenty of doco on line to get the most out of phpmyadmin