[Solved] How to import images in a bulk import function? [closed]

You can use as bellow script for CSV $row = 1; $counter = 0; $urls = array(); $desdir = “Destination_DIR_URL”; //Ex: 250×250/ for current directory, create the directory with named 250×250 if (($handle = fopen(“targetfile.csv”, “r”)) !== FALSE) { while (($data = fgetcsv($handle, 1000, “,”)) !== FALSE) { $num = count($data); $counter++; $row++; if($counter > … Read more