Este es el codigo de la tabla
Código:
CREATE TABLE `PHPAUCTIONXL_bids` (
`id` int(11) NOT NULL auto_increment,
`auction` varchar(32) default NULL,
`bidder` varchar(32) default NULL,
`bid` double(16,4) default NULL,
`bidwhen` timestamp(14) default NULL,
`quantity` int(11) default '0',
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;
y este es el error que me aroja cuando quiero hacer el insert..
error
INSERT INTO PHPAUCTIONPROPLUS_bids VALUES ('3fc57cabeb900e53238f28ad072881c7', '506ca8f52c6fc5f264cd73d216aee41d', '10000.0000', NULL, 0)
Column count doesn't match value count at row 1
gracias maestros