|
I have a quotes database with following structure, if anyone interested, I can give it to you at 4$.
Happy new year to all.
CREATE TABLE `quotes` (
`ID` varchar(255) default NULL,
`Quote` varchar(255) default NULL,
`Name` varchar(255) default NULL,
KEY `Name` (`Name`)
)
|