RE: [PHP-WIN] Tab Seperated Data

2001-02-02 Thread Keith Stevenson
isnt it something like use explode("\t", $whatever) to put all the tab delimited fields in an array called $whatever. -Original Message- From: Tom Mathews [mailto:[EMAIL PROTECTED]] Sent: Friday, February 02, 2001 10:28 AM Cc: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] Tab

Re: [PHP-WIN] Tab Seperated Data

2001-02-02 Thread Tom Mathews
Can't remember the syntax off hand, but if you look under the file handling stuff in the manual, you will see that there is a function which allows you to put a tab delimited file into an array. From there you can do what you want with each of the elements. Ben Cairns wrote: > I have a file wher

[PHP-WIN] Tab Seperated Data

2001-02-02 Thread Ben Cairns
I have a file where the data is Tab Seperated (instead of CSV) For example: datadatadatadata on so on What I need to do is to read this file, parse it, and put each field into a unique varible, so obviosly, I must be able to rename the variable that it goes into. Does that ma