Welcome to the MacNN Forums.

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

You are here: MacNN Forums > Software - Troubleshooting and Discussion > Developer Center > Parsing XML Attributes with PHP

Parsing XML Attributes with PHP
Thread Tools
Registered User
Join Date: Jul 2003
Location: San Jose
Status: Offline
Reply With Quote
Sep 13, 2003, 12:16 AM
 
I just started learing XML and was wondering if there is any way to extract information about XML attributes using PHP.

for example, say i have Contact.xml and i want to only display those contacts where id="1".

[php]
// Contact.xml

<?xml version="1.0"?>

<contact>

<type id="1">
<name></name>
<email></email>
</type>

<type id="2">
<name></name>
<email></email>
</type>

</contact>
[/php]

i then use a switch statement within the PHP script to convert the XML tags to HTML, but this parses the entire document.

is there a way within the PHP script to only parse a selection of the XML document that meets a certain criteria (i.e. id="1")???

thanks in advance...
     
mzllr  (op)
Registered User
Join Date: Jul 2003
Location: San Jose
Status: Offline
Reply With Quote
Sep 13, 2003, 04:26 AM
 
nevermind... good ol' php manual

[php]
function startElement($parser, $name, $attribs) {

if (sizeof($attribs)) {
while (list($k, $v) = each($attribs)) {
echo "$k = $v";
}
}
}
[/php]
     
   
Thread Tools
Forum Links
Forum 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
Trackbacks are On
Pingbacks are On
Refbacks are On
Top
Privacy Policy
All times are GMT -5. The time now is 07:09 PM.
All contents of these forums © 1995-2011 MacNN. All rights reserved.
Branding + Design: www.gesamtbild.com
vBulletin v.3.8.7 © 2000-2011, Jelsoft Enterprises Ltd., Content Relevant URLs by vBSEO 3.3.2