hi i dont suppose that anybody could point me in the right direction on to how i could make it so that there could be more gallery categories cause i can only have 8 ive been trying to figure it out for age i thought it would be in the functions.inc but it aint there so any suggestions would be great im on wapdesire v2 btw thank you
gallery cats
Collapse
X
-
Originally posted by cheeky-girl View Posthi i dont suppose that anybody could point me in the right direction on to how i could make it so that there could be more gallery categories cause i can only have 8 ive been trying to figure it out for age i thought it would be in the functions.inc but it aint there so any suggestions would be great im on wapdesire v2 btw thank you
-
well thats me gallery files
--
-- Table structure for table `gallery_files`
--
CREATE TABLE `gallery_files` (
`id` int(10) NOT NULL auto_increment,
`uid` int(10) NOT NULL default '0',
`filename` varchar(50) NOT NULL default '',
`path` varchar(255) NOT NULL default '0',
`category` char(1) NOT NULL default '0',
`hits` int(10) NOT NULL default '0',
`date` int(100) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=329 DEFAULT CHARSET=latin1 AUTO_INCREMENT=329 ;
and gallery cats
-- Table structure for table `gallery_categories`
--
CREATE TABLE `gallery_categories` (
`id` int(10) NOT NULL auto_increment,
`name` varchar(50) NOT NULL default '',
`active` char(1) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ;
which bit u on about shaun im blonde remember lololol x
Comment
-
Originally posted by cheeky-girl View Postwell thats me gallery files
--
-- Table structure for table `gallery_files`
--
CREATE TABLE `gallery_files` (
`id` int(10) NOT NULL auto_increment,
`uid` int(10) NOT NULL default '0',
`filename` varchar(50) NOT NULL default '',
`path` varchar(255) NOT NULL default '0',
`category` char(1) NOT NULL default '0',
`hits` int(10) NOT NULL default '0',
`date` int(100) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=329 DEFAULT CHARSET=latin1 AUTO_INCREMENT=329 ;
and gallery cats
-- Table structure for table `gallery_categories`
--
CREATE TABLE `gallery_categories` (
`id` int(10) NOT NULL auto_increment,
`name` varchar(50) NOT NULL default '',
`active` char(1) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ;
which bit u on about shaun im blonde remember lololol x
`category` char(1) NOT NULL default '0',
sholud be
`category` char(5) NOT NULL default '0',
Comment
Comment