Jump to content

[SOLVED] CSV writing


PC Nerd

Recommended Posts

Hi,

 

Im looking for a way to write to a CSV file.

 

I can get the writing working, but i cant seem to find out how to get the records seperated.  at the moment the firlds are placed correctly "value, value, value" - however the next record only continues on the same line when veiwed in MS Office Excel.

 

How can I create the newline?

 

thanks

Link to comment
https://forums.phpfreaks.com/topic/82120-solved-csv-writing/
Share on other sites

<?php

 

$lastname = "ME";

$firstname = "NAME";

$email = "[email protected]";

 

if(is_writable('TEST.csv')) {

 

$fp = fopen('TEST.csv','a');

$content = "$lastname,$firstname,$email\n";

fwrite($fp,$content);

 

 

fclose($fp);

 

}

 

?>

 

thats what ive got - and its working.

 

 

Thanks

 

 

 

Thanks

Link to comment
https://forums.phpfreaks.com/topic/82120-solved-csv-writing/#findComment-417445
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.