this is the error… in csv and xls and xlsx
Invalid field name: “Remodelacion Tienda Elektra 5047 Victoria de Durango”," 1.005D"," Obras Provisionles"," valores entrantes,“m2”,“200.12”,“300.12”
this is my table
DROP TABLE IF EXISTS catalogo_conceptos
;
CREATE TABLE IF NOT EXISTS catalogo_conceptos
(
id_catalogo
int(10) NOT NULL AUTO_INCREMENT,
nombre_obra
varchar(200) NOT NULL,
clave
varchar(10) NOT NULL,
conceptos
varchar(100) NOT NULL,
especificaciones
text NOT NULL,
unidad
varchar(20) NOT NULL,
cantidad
float NOT NULL,
pu
float NOT NULL,
PRIMARY KEY (id_catalogo
)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;