| |||||||||||
| |||||||||||
Writing form variables to a file Posted by Anji (Anji), 18 July 2002 I have a form that writes to a .csv file but I now want it to be separated by tabs. Does anyone know what syntax should use to separate with tabs?Anji Posted by admin (Graham Ellis), 18 July 2002 I would suggest that you join up each line using the implode function (the answer to most PHP questions often includes the phrase "there's a function to do that" ![]() $array = array('lastname', 'email', 'phone'); $together = implode("\t", $array); fputs ($fp, $together); Should do the trick ... if you happen to have embedded double quotes or tabs within any of the fields, then you may need to do something a bit more complex; please post a followup if this is the case, and I'll extend the answer Graham P.S. Note the double quotes around the \t This page is a thread posted to the opentalk forum
at www.opentalk.org.uk and
archived here for reference. To jump to the archive index please
follow this link.
|
| ||||||||||
PH: 01144 1225 708225 • FAX: 01144 1225 793803 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho |