<?php // CSV Product Feed Script version v3.0 // copyright pagerank10.co.uk 2006 // REQUIRED CHANGES // be carefull NOT TO DELETE any single quotes, double qoutes, forward slashes, or semi-colons // ALL OCCURENCES OF ********** MUST BE REPLACED WITH THE CORRECT VALUES TO ENABLE SCRIPT $site_url="**********/"; //eg. http://www.yoursite.com/path/to/ (must end with forward slash /) $filepath="http://www.boxedgifts.co.uk/paidonresults-daystoamaze.csv"; //eg. http://www.yoursite.com/path/to/yourcsvfile.csv // END REQUIRED CHANGES // csv file configuration $delimiter=","; //csv file delimiter $length="8192"; //maximum line length $set_row="1"; //set to 1 if csv file contains element names otherwise set to 0 // csv file element configuration $DATA=array("ProdID" => 0, "ProdNAME" => 1, "ProdPRICE" => 2, "ProdDESC1" => 3, "ProdDESC2" => 4, "ProdIMG1" => 6, "ProdIMG2" => 7, "ProdURL" => 5, "PrevURL" => "", "ProdCAT1" => 9, "ProdCAT2" => 1, "ProdCAT3" => "", "ProdCAT4" => "", "ProdSELECT" => 9); ?>
$site_url="**********/";