Re: [PHP] How do I read a tab delimited file?

2002-03-11 Thread pong-TC

I never try before, but I think you can use explode or strtok function to
chop each field in the line with any delimiter.

hope this would help.
Pong



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] How do I read a tab delimited file?

2002-03-11 Thread Analysis Solutions

$Array = explode(\t, $Line);

Enjoy,

--Dan

-- 
PHP scripts that make your job easier
  http://www.analysisandsolutions.com/code/
 SQL Solution  |  Layout Solution  |  Form Solution
 T H E   A N A L Y S I S   A N D   S O L U T I O N S   C O M P A N Y

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php