A PHP extension shipped with the main source tree. The SimpleXML extension provides a very simple and easily usable toolset to convert XML to an object that can be processed with normal property selectors and array iterators. For java Simple XML framework use [simple-framework] tag.

learn more… | top users | synonyms

-1
votes
1answer
23 views

Removing parent nodes based on child in XML

I have an XML which looks like the following: $data = '<search-params> <date>2013-05-20</date> </search-params> <results> <date>2013-05-21 ...
1
vote
1answer
23 views

Undefined Offset Error with simplexml

I have an XML File called 'groups.xml' and I want to create a child of a child. <?xml version="1.0" encoding="UTF-8"?> <body> <group_no>2</group_no> <group id="1"> ...
-1
votes
1answer
33 views

xml parsing foreach loop + only one record inserted? [closed]

I cant for the life of me figure out how to get this code to process more than one record. The code works fine, it just inserts the first record and then stops. The feed: ...
-1
votes
3answers
58 views

php find xml node thanks to isset variable form url

I have a single.php page where I want to load individual post. To do this I have some links in my index.php that allows to load single.php page : <a href="single.php?blog_no=12">Post ...
0
votes
0answers
20 views

Google Calendar RSS feed UTF-8 latin letter issue (�)

I'm reading a Google Calendar RSS feed with PHP which in my local version it works great, but as soon as I uploaded it to my server, I saw, that the output of letters such as æ ø å ö ä ÿ ü and so on ...
0
votes
0answers
19 views

Simple-xml: how to annotate my “TransactionList” class

I have to represent in an Android program a data structure like this: <?xml version="1.0" encoding="UTF-8"?> <Transactions> <Transaction> <Id>78</Id> ...
0
votes
1answer
39 views

Enter values into MySql Database based on PHP Name/Value pairs array

I have the following array: SimpleXMLElement Object ( [@attributes] => Array ( [name] => Gallops ) [table] => Array ( [0] => SimpleXMLElement ...
0
votes
0answers
5 views

Latest Twitter update returns error

I tried a twitter last update script that i've found online, but it's not working. When i go to ther xml file on twitter, it opens up like it's supposed to be, but the code returns "Could not ...
-1
votes
1answer
30 views

php-reading xml child node value [duplicate]

Trying to get the node value of ds:X509Certificate in PHP. I am able to navigate till IDPSSODescriptor tag, any pointers on how to access child node values. <EntityDescriptor> ...
0
votes
0answers
22 views

Load XML session into PHP page

So I have an index.php Wordpress theme page with a search form on it. When the user clicks "submit" the form runs an external script process-results.php which retrieves XML data from another server ...
0
votes
1answer
41 views

Edit file and overwrite file with different files name [closed]

I have an application that allows admin to edit a file in a directory via PHP. I have problems because it doesn't allows the admin to overwrite files with the same name. Eg I have a file called ...
0
votes
1answer
46 views

SimpleXML insert Processing Instruction (Stylesheet)

I want to integrate an XSL file in an XML string gived me by php CURL command. I tryed this $output = XML gived me by curl option; $hotel = simplexml_load_string($output); ...
0
votes
1answer
35 views

How to add “id” attributes to exsisting element values in a PHP simplexml document

These 2 lines below currently work within the XML document to produce the 2 values : if (isset($images[0]->fname)) { $image1 = $theimgpath.'/'.$images[0]->fname; } else { $image1 = ''; ...
0
votes
1answer
17 views

Get a special charactor in a XML file using simplexml and CDATA

I am trying to retreive a string in a XML file using simplexml. But the string contains the character "&". So I think I have to use CDATA to get the value. I am really new to this and don't no how ...
0
votes
2answers
56 views

echo attributes from xml feed using simplexml

Im new to simpleXML, so excuse me if this a very simple question, but I have been stuck on it for the past while. I have the following xml structure <Export ...
1
vote
2answers
64 views

How to add 'id' attribute to elements in XML based upon other element values

Would very much appreciate help on how to achieve the outcome below - being able to add the id attribute to the <image> tags with a PHP snippet or any methods. <?xml version="1.0" ...
0
votes
1answer
25 views

Printing specific XML Fields from Steam API

I am trying to make a simple function that will take a submitted 64bit steamid and spit back info using the Steam API. I chose to use XML rather then JSON as i have used some XML in the past. I am ...
1
vote
1answer
30 views

Parse SOAP response in php

I'm dealing with a SOAP client response for a flight booking application, I successfully got the response, See the response below: <arzoo__response> <Response__Depart> ...
0
votes
0answers
27 views

Parse XML trovit feed with PHP

I would like to parse a specific XML feed, but I am getting empty value using SIMPLEXML Any help will be really appreciated. This an example of the Trovit XML feed. I for example, use the below ...
0
votes
1answer
13 views

Store value of a SimpleXML node even if it updates

I am trying to store the value of an xml node and keep it the same even if it updates. If I do: $sxml->node = 1; $blah = $sxml->node; echo($blah . "<br />"); $sxml->node = 2; ...
0
votes
1answer
23 views

simpleXML - cant figure out how to get elements

Thanks for looking ... I have never used an API before and am stuck. Here is the XML that comes back from the API (changed the values as i dont think it should be public) <?xml version="1.0" ...
0
votes
3answers
32 views

Getting a specific part from XML

I am trying to get the PAY where it has the ID 3 Where it says the label phone but i really dont know how, i tried everything. Thanks for helping! Here is the XML code: $books = '<?xml ...
1
vote
2answers
33 views

Trying to read values from an XML feed and display them in PHP

I'm trying to display values from this xml feed: http://www.scorespro.com/rss/live-soccer.xml In my PHP code I have the following loop but it does not display the results on my page: <?php ...
0
votes
1answer
28 views

php simplexml_load_file($url) vs browser [closed]

I have very simple code, but some troubles with that: <?php ini_set('allow_url_fopen ','ON'); $url = "http://geokrety.org/export2.php?wpt=OP1234"; $result = simplexml_load_file($url); ...
0
votes
3answers
31 views

Select all nodes with a certain name by using PHP SimpleXML - source code attached

In the following XML file I'm trying to print all TestItem nodes, but get only the 4 outer nodes. Does anybody please know, how to print every node having that name, regardless of their position? ...
0
votes
1answer
18 views

simplexml addChild in a certain tag

I want to add a child for a cetrain user. $file = simplexml_load_file('gebruikers.xml'); $user = $file->$_SESSION["S_voornaam"]; $usercord = ...
0
votes
1answer
33 views

Getting value that is prepended with '@' in SimpleXMLElement [duplicate]

I have this line of code: print_r($item->figure->iframe); Which produces this output: SimpleXMLElement Object ( [@attributes] => Array ( [height] => 288 ...
1
vote
2answers
32 views

Using PHP to convert XML data

I need to take XML DATA and upload all of it into my MySQL database. (right-click, save as...) Here's my theory... Take this line for example: monster short="Fredzin the crazed Dwarf" ...
2
votes
3answers
57 views

Fetch images URL from XML

I am using the below code to fetch the $movie->id from the response XML <?php $movie_name='Dabangg 2'; $url ...
0
votes
2answers
36 views

How do I parse an XML file that is not well-formed

I could not parse the XML file. How can I make the following code in the loop. Can I do this with SimpleXML? <Variants> <Definition>Color=Black</Definition> <Code/> ...
0
votes
3answers
27 views

PHP Parsing Text and Description SimpleXML

I'm trying to parse the text and description field from the code provided: <? $news = ...
0
votes
0answers
17 views

SimpleXML how to get a node with attribute First Name == “John”? Possible without looping? [duplicate]

Do I have to loop through the entire object? <Employees> <Employee name="John"> ... </Employee> <Employee name="Will"> ... </Employee> <Employee name="Jack"> ...
0
votes
1answer
28 views

simpleXML with special chars in XML-Url

I have a little Problem with my code. I am trying to pull song id's from Spotify. This works fine for me, but not with special characters in the url (like ü,ö,ä). I get this warning (first line is ...
0
votes
0answers
51 views

PHP import an XML file into a database

I am attempting to allow users to upload a file, the contents of which would then be read into a database using SimpleXML. My code is as follows: else { $info = ...
-1
votes
4answers
55 views

How to get an element from simplexml

SimpleXMLElement Object ( [SMSMessage] => SimpleXMLElement Object ( [Sid] => xyz [DateUpdated] => 2013-05-02 18:43:19 [DateCreated] => ...
0
votes
2answers
63 views

Can't read XML with simplexml_load_file PHP

So i am trying to parse data from an XML url and insert it into a table using php, which can be seen here, (please keep in mind there are more products than displayed on this page, i am not trying to ...
0
votes
1answer
26 views

simplexml get value of node that is next to matched node

I am wondering if I can get a neighboring node's value <item> <title>Cell Phone Plans That Make You Go Hmmm</title> ...
0
votes
1answer
29 views

xpath simplexml tags query and how to get node values

I have my xpath query using simpleXML which I want to use to get the node values of the tags title,description and link. But I don't know how to output them like only outputting the title contents for ...
0
votes
1answer
16 views

simplexml & php: read a node's value

I'm running this code in php $xml = simplexml_load_file("test_info.xml"); $xml_image = $xml->channel->userinfo->image; test_info.xml: <channel> <userinfo> ...
3
votes
1answer
125 views

RSS XML Parsing issue (How to get media content value from the RSS feed?) [duplicate]

I have a rss feed url which generates an xml as follows: <?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/" ...
3
votes
2answers
55 views

Getting the XML values with simple XML

Its my first time working with an XML file and I am using SimpleXML. I am under the impression that doing $xml->dni-listings->get-listings-by-day->current->date is possible? but I dont ...
0
votes
0answers
98 views

Import XML file into the MySQL table

sorry for my poor english. I'm not native speaker. I'm trying to import my XML file to mysql database using PHP, but I still get problems. So this is my XML, only online. And I have already ...
0
votes
1answer
42 views

php loops return array repeatedly from form

$article is an array: $article= array(); //values $article['title'] = $item->title; $article['url'] = $item->link; $article['description'] = ...
0
votes
1answer
50 views

php file_get_contents on 3rd party xml with a broken tag

$url = "http://example.com/get-xml.php"; // contains broken XML $file = file_get_contents($url); $xml = simplexml_load_string($file); Message received when simplexml_load_string is called: ...
-2
votes
1answer
34 views

Search a xml element by an attribute in php

I think the question is repeated but I'm not satisfied with the previous answers. I have a XML file as <?xml version="1.0" encoding="UTF-8"?> <forms xml:id="cust_type"> <form> ...
1
vote
1answer
23 views

Get all children of parent identified by a specific atribute value using xpath

Is there a way you can get all get all children of a parent with a specific attribute value using xpath, for instance if i wanted to get all the children of the first <b> below i could write ...
0
votes
2answers
46 views

Unset child node makes method disappear

I parsed an XML with SimpleXML and wanted to truncate it. This is the method: public function truncate() { foreach ($this->_xml->children() as $key => $value) { if ( ...
-1
votes
3answers
38 views

How to delete a node searched by attribute with its child nodes in xml by php

My XML file is given billow I'm using the xml as external file.: <?xml version="1.0"?> <custscales> <custscale sclNo="1" type="lin"> <scaleName>Custom Scale ...
-1
votes
0answers
18 views

Merge child elements by key inside a simple_xml object

I would like to merge child elements with same key in a simple XML object to have only one child instead multiple but I couldn't figure out how. for example this is the object: SimpleXMLElement ...
0
votes
4answers
56 views

Parsing a single XML section using a query string with PHP

I'm trying to retrieve a single section from an XML file using PHP. Here's the code I'm using: <?php $articles = simplexml_load_file('articles.xml'); foreach ($articles as $articlecontent) { ...

1 2 3 4 5 35