View Single Post
  #3 (permalink)  
Old 10-28-2007, 08:14 PM
HelloWorld's Avatar
HelloWorld HelloWorld is offline
PT Admin
Awards Showcase
Quality Tutorial 
Total Awards: 1
Join Date: Jun 2007
Location: In front of computer...
Posts: 1,122
iTrader: (0)
HelloWorld is a jewel in the roughHelloWorld is a jewel in the roughHelloWorld is a jewel in the rough
what does it return?

can I use below XML:

Code:
<?xml version="1.0" encoding="utf-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/">
	<trackList>

		<track>
			<title>Streamline</title>
			<creator>Newton</creator>
			<location>test1</location>
			<image>test1a</image>
		</track>
		
		<track>
			<title>LSE</title>
			<creator>Hello</creator>
			<location>test2</location>
			<image>test2a</image>
		</track>

	</trackList>
</playlist>
Btw, I want to parse it one by one so that I can store it back to array...? if possible.. so:

$title[0] will give me Streamline..

something like that

__________________
PHP Code:
System.out.println("Hello World!"); 

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!

Last edited by HelloWorld : 10-28-2007 at 08:30 PM.
Reply With Quote