• 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

mysql n00b question

Weapon

NLC
NLC
how do I go about cleaning eveything in my database through phpmyadmin, other words delete all th folders
 
i was thinking of hosts that only give you one database and you can delete it, i forgot that there are hosts that give more then one database
 
you can delete all the entire table without deleting the database using this command
first you must connect to your db before using this command

use yourdb;
drop yourtable;
 
Back
Top