You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create database web_game;
use web_game;
create table players (id int not null primary key auto_increment, nickname varchar(20), password varchar(20), hp int, xp int);