> Thanks - what I want to do is just say something like 
> fputcsv($myarray) - and not have to worry about putting in the 
> commas or whatever myself... will fputs do that?
> 
> (In case it wasn't clear - I'm wanting to write back to the 
> file, having already read from it using fgetcsv)

How about fputs($filehandle, implode(",", $array)) ...? :)

(I haven't used fgetcsv, sorry)

J

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to