View Single Post
Old 07-30-2006, 09:07 PM   #2 (permalink)
Vorspire
Forum Expert
 
Vorspire's Avatar
 
Join Date: Jan 2005
Location: Newcastle, United Kingdom
Age: 21
Posts: 2,294
Send a message via ICQ to Vorspire Send a message via MSN to Vorspire Send a message via Skype™ to Vorspire
Cool

Run this MySQL 4 query in PhPMyAdmin, to add the 'accounts' table to your chosen database:

Code:
CREATE TABLE IF NOT EXISTS accounts (
  `name` text NOT NULL,
  `password` text NOT NULL,
  `email` text NOT NULL,
  phase int(5) NOT NULL default '0'
) TYPE=MyISAM;
__________________

RPK.VORSPIRE.COM - The WoW-UO Cross-Over Shard

Last edited by Admin Vorspire; 08-01-2006 at 06:30 AM.
Vorspire is offline   Reply With Quote