Run this MySQL 4 query in PhPMyAdmin, to add the 'accounts' table to your chosen database:
Code:
CREATE TABLE IF NOT EXISTS accounts (
`name` text NOT NULL,
`password` text NOT NULL,
`email` text NOT NULL,
phase int(5) NOT NULL default '0'
) TYPE=MyISAM;