• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

telnet

phpnuker

New Member
i could figure out wich one i should put it in so i chose this one, How the hell do u make a MySQL db with telnet? im connected to the server and everything, i just cant figure out the command... help would be great!
 
mysql -u <username> -p <database>

Then use the regular SQL commands to create the table, like

Code:
CREATE TABLE <table name here> (
    somefield varchar(200),
    (...)
);

Check out http://www.mysql.com/. They have documentation that is quite good.
 
Back
Top