Results 1 to 4 of 4

Thread: Contact Table

  1. #1
    Join Date
    Apr 2010
    Posts
    26

    Default Contact Table

    What can I use for the contact table in database, because I didn't find anything about the contact table.

    Thanks,
    Forg4t

  2. #2
    Join Date
    Apr 2010
    Posts
    26

    Default

    Someone can you help me?

    Thanks!

  3. #3
    Join Date
    Jan 2008
    Posts
    216

    Default

    What you mean exactly?

  4. #4
    Join Date
    Apr 2010
    Posts
    26

    Default

    -- Table structure for table `contact`

    CREATE TABLE IF NOT EXISTS `contact` (
    `fname` varchar(50) NOT NULL default '',
    `lname` varchar(50) NOT NULL default '',
    `email` varchar(50) NOT NULL default '',
    `submit_date` varchar(15) NOT NULL default '',
    `user_ip` varchar(20) NOT NULL default '',
    `message` varchar(200) NOT NULL default '',
    `subject` varchar(100) NOT NULL default '',
    `flag` varchar(20) NOT NULL default ''
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8;

    -- Dumping data for table `contact`

    -- Table structure for table `relation`

    CREATE TABLE IF NOT EXISTS `relation` (
    `AID` bigint(20) NOT NULL auto_increment,
    `FAID` bigint(20) NOT NULL default '0',
    `FBID` bigint(20) NOT NULL default '0',
    `status` varchar(8) NOT NULL default 'pending',
    `type` varchar(8) NOT NULL default '',
    `e_mail` varchar(80) NOT NULL default '',
    PRIMARY KEY (`AID`),
    UNIQUE KEY `FAID` (`FAID`,`e_mail`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

    -- Dumping data for table `relation`

    Hello,
    These can be found vshare.sql's installation file, but I didn't find any functions witch uses these two table. So do these two tables have any functions or I just don't know anything about these or can I delete them?

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •