Hi Vincent,
Thanks for your help here.
On my local copy of the site / DB the data is imported with MySQLfront using the query option. At the ISP version they have a very crude form interface to allow for file import. Results are the same in both cases.
The actual file being included is a standard SQL file table structure outlined as follows:
CREATE TABLE productos (
Pedido varchar(7),
Titulo varchar(100),
ID int(4) unsigned,
Precio_Basico float(10,2),
Cuota_A float(10,2),
Cuota_B float(10,2),
Cuota_C float(10,2),
Year int(6) unsigned,
Formato_Obra varchar(60),
Formato_Papel varchar(60),
Tipo_Papel int(2) unsigned,
Tecnica varchar(100),
Descripcion_es text,
Descripcion_en text
) TYPE=MyISAM;
And a sample row as follows:
INSERT INTO productos VALUES("10272","El criticón","306","89,55","85,07","80,6","71,64","","","","","","","");
Gary