Hi All, I am using the following code to write to a .csv. Unfortunately, it is not actually writing anything in and my array is not working. Any ideas/help/code corrections would be greatly appreciated: I know all of the data is being read into through the queries correctly.
Make sure the directory that Product_Database.csv is going into is writable. Try the following to make sure you can actually write to the file. $file = fopen("Product_Database.csv","w"); fwrite($file, 'test'); fclose($file);