Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Old 11-07-2009, 11:40 PM   PM User | #1
johnnnn
New Coder

 
Join Date: May 2009
Location: Pennsylvania, United States
Posts: 19
Thanks: 5
Thanked 0 Times in 0 Posts
johnnnn is an unknown quantity at this point
Split CSV row

I'm experimenting with flat files.

I have this file, it looks like this:

1,John Doe,"Hello world!"
2,Jane Doe,"Hello, John!"

My question is how could I "split" each row into 3 seperate fields

Here's what I have so far:

$db = file('db.txt');
foreach($db as $row) {
list($id, $name, $msg) = explode(",", $row);
}

However, the explode() is not working, any ideas?
johnnnn is offline   Reply With Quote
Old 11-08-2009, 01:40 AM   PM User | #2
kbluhm
Regular Coder

 
kbluhm's Avatar
 
Join Date: Apr 2007
Location: Philadelphia, PA, USA
Posts: 745
Thanks: 2
Thanked 100 Times in 97 Posts
kbluhm is on a distinguished road
http://www.php.net/fgetcsv
__________________
ZCE
kbluhm is offline   Reply With Quote
Old 11-10-2009, 06:52 PM   PM User | #3
GoodBanners.com
New Coder

 
Join Date: Nov 2009
Location: Australia
Posts: 43
Thanks: 0
Thanked 5 Times in 5 Posts
GoodBanners.com is an unknown quantity at this point
Quote:
Originally Posted by johnnnn View Post
I'm experimenting with flat files.

I have this file, it looks like this:

1,John Doe,"Hello world!"
2,Jane Doe,"Hello, John!"

My question is how could I "split" each row into 3 seperate fields

Here's what I have so far:

$db = file('db.txt');
foreach($db as $row) {
list($id, $name, $msg) = explode(",", $row);
}

However, the explode() is not working, any ideas?
using explode or splut with delimited "," wont work if your texts contains ","
__________________
Professional Banner Design @ goodbanners.com

Free Web Banner Design @ WebBannerMaker.com
GoodBanners.com is offline   Reply With Quote
Reply

Bookmarks

Tags
csv, database, explode

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 03:11 PM.

Home - Contact Us - Archives - Link to CF - Resources - Top 

Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.