For some reason the webtest database still doesn't show me any tables:
PHP Code:
// MySQL Query
$query = 'CREATE TABLE mycms ('.
'id INT NOT NULL AUTO_INCREMENT KEY'.
'username VARCHAR(10) NOT NULL, '.
'password VARCHAR(10) NOT NULL, '.
'PRIMARY KEY (id))';
that's what I got for the
$query 