i have my products in a text file that i am trying to upload on to zen cart using php. i have thebelow line of cide to add to products_description table. data is an array that ontains the info i wnt to add. i am new tophp so forgive the stupid error i might be making.
$request1 = "INSERT INTO products_description (products_id, language_id, products_name) VALUES (200,1,$data[1])";
mysql_query($request1) or Die('didnot work');



