Support

Account

Home Forums General Issues Inserting CSV data into custom fields Reply To: Inserting CSV data into custom fields

  • May not be the problem, but you’re starting $i at 1

    
    for($i = 1, ...
    

    but you say that it works using

    
    $inventory[0][1]
    

    so shouldn’t $i start at 0?

    
    for($i = 0,