the data base data is stored as the image shows. the table is products.

the data in excel is as the following shows.

but when i open it by notepad++. it shows like this:

1, the data's format which i prepared is right? if not? how to correct it?
- supposed the
csvfiled namedproduct.csv. when i usingLOAD DATA INFILE.when should i put the csv file into? could i load it from my local computer to my site's server?
i want to update the price, if the price is null, then using 0 to fill. this is my command. but it doesn't work
LOAD DATA LOCAL INFILE 'D:\\product.csv' REPLACE INTO TABLE products
FIELDS TERMINATED BY ' '
LINES TERMINATED BY '\r\n'
IGNORE 1 LINES
(products_model, @var1)
SET products_price = IF(@var1 = '', 0, @var1); -- Replace empty string with 0
i put the above command in phpmyadmin, it can run, but the data doesn't be updated. what's wrong with it?
ps: is there a way to use PHP to get this? if have, how to do it?