Quote:
Originally Posted by Jery16
23. Now you will you will need to make yourself an account. Use this command in your mysql command client
insert into account.account (name,password,reg_date) values ('test','53b6320eb06e2c62888a6d1739cd24bd',now());
i dont understand that can some1 explain it to me bit better so i can understand? TY
|
This is very easy and simple if you have navicat open your db and click on my2 or if you are using a old db it be my ok now your my2 or my is open. and my2or my is highlighted in blue ok now look up top and u will see TOOLS

and then you want to click Console which Console=commandline

then all you do is paste what that says in there but change this
Code:
insert into account.account (name,password,reg_date) values ('test','53b6320eb06e2c62888a6d1739cd24bd',now());
To this
Code:
insert into my2.account (name,password,reg_date) values ('test','53b6320eb06e2c62888a6d1739cd24bd',now());
or if u have the old db u use this
Code:
insert into my.account (name,password,reg_date) values ('test','53b6320eb06e2c62888a6d1739cd24bd',now());
or
gotta change that to my2 because your database is not named account.account its my2.account or if its old just change it to my. Now i hope this helped you do not forget to hit the thanks button.