I made some modification to a tube script to add a Pornstar section, now i want to modified it to add more info... But seem i'm always getting some syntax error
Working Table:
PHP Code:
CREATE TABLE IF NOT EXISTS `pornstar` ( `PSID` bigint(20) NOT NULL auto_increment, `name` varchar(120) NOT NULL default '', `website` text NOT NULL, `views` int(11) NOT NULL, `height` text NOT NULL, `hair` text NOT NULL, `born` text NOT NULL, `measurements` text NOT NULL, `related` text NOT NULL, `total_videos` bigint(20) NOT NULL default '0', `about` text NOT NULL, `images` text NOT NULL, PRIMARY KEY (`PSID`), UNIQUE KEY `name` (`name`)) ENGINE=INNODB DEFAULT CHARSET=utf8 AUTO_INCREMENT=23 ;
What i'm trying to add:
PHP Code:
`performer` text NOT NULL, `astrology` text NOT NULL, `birthplace` text NOT NULL, `years` text NOT NULL, `weight` text NOT NULL, `ethnic` text NOT NULL,`measurements` text NOT NULL,
Any tips on this, seem i can't figure it out
Thanks!!!