Page 1 of 1

simple array problem

Posted: Thu Apr 02, 2009 7:24 pm
by tr3online
Hi there, I've new to php and have been reading some tutorials about arrays.

My issue is, I am grabbing some data via preg_match which returns an array as follows
Array
(
[0] => Array
(
[0] => LYRICS=<p align="center"><b>ふたり /
)

[1] => Array
(
[0] => ふたり 
)

)
Can someone instruct me as to how I can get the information stored in the array so I can print just it, or so I can export it to a CSV?

I namely want the ふたり part.
[1] => Array
(
[0] => ふたり 
)

)
Thanks!

Re: simple array problem

Posted: Thu Apr 02, 2009 7:59 pm
by tr3online
awesome, thanks so much.
I figured it would be something simple ;)