Jump to content

xml value not reading


pagegen

Recommended Posts

<category id="SOCMENEURASTVICLEA" order="26800">Aus. Victoria League</category>

 

I have the above xml, I can read the category id, order but I dont no how to read the value "Aus. Victoria League"

 

foreach($description->children() as $category) {
		foreach($category->attributes() as $a => $b) {
			echo "<br/> -------- ";
			echo $a,'="',$b,"\"\n";
		} 
		echo "category name" . $category->asXML();
	}

 

the asXML() i have no idea what that is but am guessing I need thats where the php function which returns the value needs to go

Thank you

Link to comment
Share on other sites

Apart from MrAdam's suggestion, you should take care of time out in case the XML file is remote (not in your home directory).

Check http://www.expertsguide.info/2010/08/set-time-out-while-downloading-files/ for various methods on implementing timeout.

A very similar query post, I responded to, is here http://www.phpbuilder.com/board/showthread.php?t=10374858

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.