[PHP] Exploding Zip Codes! (Using PHP's explode function)

2002-08-12 Thread Keith Posehn
I have a huge block of zip codes I need to seperate into their constituent parts for a query of a database. The block looks like this (in part): | 36310 ABBEVILLE | | 35440 ABERNANT | | 35005 ADAMSVILLE | | 35540 ADDISON | | 35006 ADGER | | 35441 AKRON | I need to use eplode

Re: [PHP] Exploding Zip Codes! (Using PHP's explode function)

2002-08-12 Thread Analysis Solutions
On Mon, Aug 12, 2002 at 01:29:38PM -0700, Keith Posehn wrote: | 36310 ABBEVILLE | | 35440 ABERNANT | | 35005 ADAMSVILLE | Look at http://www.php.net/manual/en/function.fgetcsv.php. Use Example 1, substitutingas your delimiter argument and your file name in lieu of test.csv