PDA

View Full Version : Executing MySQL querys



frushtastic
12-10-2008, 03:57 PM
Hey, I am setting up a script and I have to execute a mySQL query. How would I go about executing this command?


CREATE TABLE slogans (
id tinyint(4) NOT NULL auto_increment,
slogan text NOT NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;

Falcon1986
12-10-2008, 04:53 PM
Access phpMyAdmin via your cPanel and select the database from which you want to run the query. Then, go to the 'SQL' tab, paste the query into the 'RUN' box and press GO.

frushtastic
12-10-2008, 05:00 PM
Thank you!