I Need File Ibwf_upload , Ibwf_gallery , Ibwf_shop

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    I Need File Ibwf_upload , Ibwf_gallery , Ibwf_shop

    file ibwf_gallery, ibwf_shop, ibwf_upload i dun have..
    plss someone give it 2 me plss..

    #2
    pls any1?

    Comment


      #3
      these are tables in a sql database... not files... you can search in the forum ..for wapdesire sql ..you`ll find it ..for sure

      Comment


        #4
        yap the table in database..
        where?
        i cant find it..
        pls upload here pls..

        Comment


          #5
          this for ibwf_gallery

          Code:
          CREATE TABLE IF NOT EXISTS `ibwf_gallery` (
            `id` int(100) NOT NULL auto_increment,
            `uid` int(100) NOT NULL,
            `sex` varchar(255) NOT NULL,
            `imgurl` varchar(255) NOT NULL,
            `file` varchar(250) NOT NULL,
            PRIMARY KEY  (`id`),
            UNIQUE KEY `name` (`imgurl`)
          ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=4;
          those two for ibwf_shop
          Code:
          CREATE TABLE IF NOT EXISTS `ibwf_shop` (
            `itemid` varchar(10) NOT NULL,
            `itemname` varchar(10) NOT NULL,
            `itmeprice` varchar(10) NOT NULL,
            `itemshopid` varchar(10) NOT NULL,
            `avail` varchar(10) NOT NULL,
            `itemdesc` varchar(10) NOT NULL
          ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
          and
          Code:
          CREATE TABLE IF NOT EXISTS `ibwf_shop_inventory` (
            `itemid` varchar(10) NOT NULL,
            `uid` varchar(10) NOT NULL,
            `time` char(3) NOT NULL
          ) ENGINE=MyISAM DEFAULT CHARSET=latin1;

          and this one for ibwf_upload
          Code:
          CREATE TABLE IF NOT EXISTS `ibwf_upload` (
            `id` int(11) NOT NULL auto_increment,
            `uid` int(11) NOT NULL default '0',
            `filename` text NOT NULL,
            `date` varchar(100) NOT NULL default '',
            `filesize` text NOT NULL,
            `uip` varchar(20) NOT NULL default '',
            PRIMARY KEY  (`id`)
          ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1;

          Comment


            #6
            tx 4 ur help kosty..
            but the table ibwf_gallery?

            Comment


              #7
              my sql said
              #1072 - Key column 'imageurl' doesn't exist in table
              why ya?

              Comment


                #8
                ok im done..
                tx kosty..
                =)

                Comment

                Working...
                X