Not signed in (Sign In)

SkillShare - A place to discuss Web Standards and Web Design topics

Categories

Vanilla 1.1.9 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorjustjack
    • CommentTimeOct 25th 2006 edited
     permalink
    UPDATE: MY COMMENTS POST BUT NOTHING ELSE? I have a form that collects firstname, lastname, email, attachment(file), and comments. I can query from my database, but when i submit data the fields are BLANK? What is going on? Below is sql on export.

    Table structure for table `clientlist`
    --

    CREATE TABLE `clientlist` (
    `id` int(5) NOT NULL auto_increment,
    `firstName` varchar(20) NOT NULL default '',
    `lastName` varchar(30) NOT NULL default '',
    `email` varchar(40) NOT NULL default '',
    `attachment` longblob,
    `comments` mediumblob NOT NULL,
    PRIMARY KEY (`id`)
    ) TYPE=MyISAM AUTO_INCREMENT=6 ;

    --
    -- Dumping data for table `clientlist`
    --

    INSERT INTO `clientlist` VALUES (1, '\0', '\0', '\0', '', 0x21);
    INSERT INTO `clientlist` VALUES (2, '', '', '', '', 0x796f7520617265207468652062657374);
    INSERT INTO `clientlist` VALUES (3, '', '', '', '', 0x596f75206172652066616e746173746963);
    INSERT INTO `clientlist` VALUES (4, '', '', '', '', '');
    INSERT INTO `clientlist` VALUES (5, '', '', '', '', 0x6b7364666a6b647366);
    •  
      CommentAuthorJohnRiv
    • CommentTimeOct 25th 2006
     permalink
    justjack, there's no need to create a new thread for this. let's continue the discussion in your original thread