02-02-2010, 02:33 PM
(02-02-2010, 02:30 PM)Master of The Universe Wrote: Enter the database you have created your Table in, and the at the top press Export... then just OK and you will get a String...
If you still can find it, just tell me what field which type has, like;
date - DATETIME
price - INT and so on...
-- Table structure for table `coin_info`
--
CREATE TABLE IF NOT EXISTS `coin_info` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`date` varchar(100) NOT NULL,
`price` varchar(100) NOT NULL,
`condition` varchar(100) NOT NULL,
`year` varchar(100) NOT NULL,
`silver` varchar(100) NOT NULL,
`gold` varchar(100) NOT NULL,
`weight` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;