DOMDocument refers to a class encapsulating the DOM (Document Object Model). Various languages and technologies use the name DOMDocument for this PHP, COM, C++, ActiveX
0
votes
0answers
22 views
DOMElement to array
need to convert DOMElement to array.
have a node:
var_dump($node);
object(DOMElement)#68 (0) {}
witch looks like:
var_dump($node->C14N());
string(93) "<places><wagon class="1" ...
0
votes
1answer
12 views
extracting value of the xml element using excel vba
I have a XML file. I need to get the value of some specific element and insert to the meta information. See below for example
XML FILE:
<date>02-12-2013</date>
<title>My first ...
0
votes
1answer
15 views
appendChild usign DomDocument/PHP/XML
I am trying to update my XML file based on an HTML form processed by PHP but the new XML snippet I am trying to append to specific areas of my current XML just keeps getting added to the end of my ...
0
votes
0answers
9 views
PHP DOM DOCUMENT cannot load file
All,
I am trying to load an XML file into DOM, but it fails due to the following reason:
Presence of the registered trademark ® (R with Circle) in the file.
Basically, if it shows the trademark ...
0
votes
3answers
36 views
PHP: DOMDocument: Remove Unwanted Text from a Nested Element
I have the following xml document:
<?xml version="1.0" encoding="UTF-8"?>
<header level="2">My Header</header>
<ul>
<li>Bulleted style text
<ul>
...
0
votes
0answers
23 views
Is there a shortcut to create PHP DOMDocuments
To create an <a> DOM element using PHP, I can do something like the following:
$element = $doc->createElement( 'a','My Link');
$element_attr = $doc->createAttribute('href');
...
2
votes
2answers
52 views
Replace all images in HTML with text
I am trying to replace all images in some HTML which meet specific requirements with the appropriate text. The specific requirements are that they are of class "replaceMe" and the image src filename ...
0
votes
0answers
6 views
Extracting “Class” with DOMDocument from HTML
I know that we can extract info from an HTML with "file get contents" and with the domdocument. I recently used the DomDocument to extract info, but I have a problem extracting the info of the ...
1
vote
1answer
35 views
Need a help on PHP domDocument
I want to append some text to divs which has same class.
$dom = new DOMdocument();
$dom->formatOutput = true;
@$dom->loadHTMLFile('first.html');
$xpath = new DOMXPath($dom)
$after = new ...
1
vote
1answer
45 views
extracitng movie IDs from IMDB
I'm trying to figure out how can I get only the id's of the movies from this page.
http://www.imdb.com/movies-in-theaters/2013-05/
I have this, but I cannot get it to work.
$content = ...
0
votes
0answers
13 views
Problems with absolute filepath using DOMdocument
I'm having trouble using an absolute filepath with DOMdocument. More-or-less following this guide:
https://developers.google.com/maps/articles/phpsqlajax_v3
I have been able to get a test code ...
0
votes
0answers
5 views
DOMDocument xml formatting
I am creating an xml file with DOMDocument.
These are the settings
$dom->formatOutput = true;
$dom->preserveWhitespace = false;
It outputs like this:
<?xml version="1.0" ...
0
votes
1answer
25 views
PHP generated XML parsing failed
In my CodeIgniter 2.x project with PHP 5.3.x I use following function to render Dom Document as XML response. Every things are goes fine. But generated XML parsing failed due to some malformed ...
1
vote
1answer
23 views
Extracting Link Text From Specific Links
I'm trying to figure out how can I get only the titles of the movies from this page.
I have this, but I cannot get it to work. Also I don't know much about DomDocument. This currently gets all the ...
0
votes
0answers
9 views
Getting span content domDocument within html tags
I need to get the content within html tags. For example, given this:
<div id="hpage_latest"><p><div style="background:#F0F0F0;border: 1px solid black;padding:5px;"><p><span ...
-2
votes
0answers
22 views
DOMDocument Import HTML [closed]
Here is my HTML code
<html>
<body>
<div>A sample block <div>and child block</div></div>
</body>
</html>
How can I use DOM to add ...
0
votes
0answers
21 views
DOMDocument grab html between two p tags [duplicate]
I am currently learning PHP DOM. I am pulling data off a webpage and attempting to parse it on my page. My question is how can I grab the HTML? With this method below, it grabs all text and strips ...
0
votes
1answer
19 views
Excel: Retrieve data from within a specific html tag on a website and insert that data into an Excel worksheet
I was looking at the web queries in excel and how you can retrieve data from a html table in a website quite easily. I wish to get a single string from within a html tag:
<span ...
0
votes
0answers
15 views
Format XML code on Eclipse with the same format as PHP DomDocument
does somebody know how to configure Eclipse XML Code format, so that the output is the same format as PHP DomDocument.
Why do I need this?
I have big xml files which I edit on Eclipse. After editing ...
0
votes
1answer
26 views
How can I return DOM content without HTML tags?
I'm using the following function to remove tags and its content from user submitted comments:
function remove_html_element($tag,$content){
$doc = new DOMDocument();
...
-2
votes
1answer
38 views
Get only the top element with getElementsByTagName in PHP
Using getElementsByTagName() of DomDocument returns a DOMNodeList object containing all the elements with supplied tag name, like this -:
$pTag = $doc->getElementsByTagName('p');
But how do I get ...
-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
2answers
91 views
Detect Encoding and Convert Everything to UTF-8 with PHP
I want to extract various data from URLs that will be converted to UTF-8 no matter what the encoding methods is used in original page (or at least it will work on most of the source encodings).
So, ...
1
vote
1answer
45 views
PHP DomDocument - getElementByID(Partial Match) How?
Is there a way to grab all elements with an id that partially match. For example, if I want to grab all HTML elements on the webpage with an id attribute that starts with msg_ but could be anything ...
1
vote
1answer
41 views
Reduce processing time of saveXML
I use PHP and there are tow APPs.
One APP, named APP-1, handles over 800,000 rows of Oracle DB to XML document.
Another APP, named APP-2, that takes XML from APP-1 as http response and show the data ...
0
votes
0answers
48 views
DOMDocument::loadXML doesn't like my XML structure [closed]
I have an XML file that needs to be stripped of all its content. However, when I run it through DOMDocument::loadXML and XPath it returns no entries. This the XML structure:
<?xml ...
0
votes
1answer
59 views
php xml dom getElementById and DOMXpath query fails getting element
I have some problems making a function to replace question and answer elements in my XML file. I did alot of research learning php dom but I'm running stuck at making this function. The problem is ...
0
votes
3answers
18 views
jquery eventhandler and documentready: handler binds too late
So I have
$(document).ready(function() {
$('#button').click(function(e) {
e.preventDefault();//do not submit the form
//go to a specific place
});
});
Now unfortunately, my page ...
0
votes
0answers
45 views
How to get the HTML with DomDocument
How can I get the HTML between a tag? I would like to show only parts of my html-code.
I am using this:
$dom = new DomDocument();
@$dom->loadHTMLFile($_SERVER['SCRIPT_FILENAME']);
$section= ...
0
votes
1answer
60 views
new DomDocument() do not work with getElementsByTagName('section'); [duplicate]
I would like to have different outputs if the file is called by Ajax or not.
For that I have this code witch works fine:
/* AJAX check */
if(!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && ...
0
votes
1answer
27 views
domDocument tag not found
I have a function to look for XML tags:
function extraerTagXML($mensaje, $tagname){
$dom = new domDocument('1.0', 'UTF-8');
//
// load the html into the object ***/
...
0
votes
1answer
18 views
domDocument extract data
I have a very simple code with domDocumet, but it has a mistake I can't solve:
function getTagXML($mensaje, $tagname){
$dom = new domDocument('1.0', 'UTF-8');
...
0
votes
3answers
35 views
Deleting an xml node and all children via php
I have been looking around here and google and found various code, but none of them work. I'm assuming it's because none of them match my exact situation. I have an xml structure like this:
...
0
votes
3answers
76 views
How to Enhance This? Get a Part of a Web Page in Another Domain
I have made this:
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
...
0
votes
1answer
30 views
windows.onresize - prevent it from execution before the variable created
hello i searched for an answer over the internet but i couldn't understand something. so i asked.
I will start with the script that i have the problem:
window.onresize=function(){
...
0
votes
0answers
65 views
Foreach Loop Only Iterating Once - PHP
I was looking for a PHP script to grab images from a few websites, but I couldn't find one that was universal and allowed scraping of multiple pages.. so I built one.
It asks for a save-to path and ...
0
votes
2answers
92 views
How to read an Array of Element Names from XMLSchema XML File in PHP?
I wanted to get the list of schema elements from xml. For example
<xs:schema id="SPPOnlineXML" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" ...
0
votes
1answer
60 views
Using cURL and dom to scrape data with php
Hi i am using cURL to get data from a website i need to get multiple items but cannot get it by tag name or id. I have managed to put together some code that will get one item using a class name by ...
0
votes
2answers
41 views
PHP DOMDocument how to get that content of this tag?
I am using domDocument hoping to parse this little html code. I am looking for a specific span tag with a specific id.
<span id="CPHCenter_lblOperandName">Hello world</span>
My code:
...
1
vote
1answer
62 views
PHP: createTextNode as object
I have a script that reads XML tags and prints it on my page.
Some items are links (without HTML tags) so I made a function that adds HTML link tags to it.
However, the links are rendered as strings ...
0
votes
2answers
40 views
DomXPath with DOMDocument to get <img> Class URL
I am writing a little scraper script that will find the image URL that has a particular class name. I know that my cURL and DOMDocument is functioning okay, and even the DomXPath really (as far as I ...
-1
votes
2answers
47 views
PHP DomDocument retrieve html content of a div [closed]
I need to retrieve a div and his content with PHP DomDocument.
I have :
$dom = new DOMDocument;
$dom->loadHTML($HTML);
exit($dom->getElementById('inter')->nodeValue);
Here i have my ...
0
votes
3answers
58 views
PHP DOMDocument, retrieve just content of a div, without div tag
I'm using DOMDocument to retrieve on a HTML page a special div.
I just want to retrive the content of this div, without the div tag.
For example :
$dom = new DOMDocument;
...
1
vote
2answers
96 views
php DOMDocument element value can't be HTML
This is the code related to the problem:
$prep = "<select><option>Option 1</option><option selected>Option 1</option></select>"
$td = ...
3
votes
1answer
168 views
DOMDocument remove script tags from HTML source
I used @Alex's approach here to remove script tags from a HTML document using the built in DOMDocument. The problem is if I have a script tag with Javascript content and then another script tag that ...
0
votes
1answer
57 views
Error when read xml file using php domxml?
I have a file test.xml
<?xml version="1.0" encoding="UTF-8"?>
<item>
<dc:creator><![CDATA[hello world]]></dc:creator>
</item>
and code php
$doc = new ...
0
votes
1answer
41 views
Call to undefined method DOMDocument::createDocumentType()
I have the following script snippet. Originally I did not realize to use getElementById that I needed to include createDocumentType, but now I get the error listed above. What am I doing wrong here? ...
0
votes
1answer
58 views
store url parameter with php
i need to store an url parameter from a button using php (using DOMdocument?!)
the button on my website has a link url which contains an parameter
...
1
vote
1answer
53 views
find parameters in url using php
I am searching for a way to find a url that contains a parameter to extract a dynamic value
example, anywhere on my website there is a button with a link that contains characters
...
-3
votes
1answer
35 views
PHP most efficient method of generating html documents [closed]
I am trying to code a web application in PHP which will dynamically generate web pages / html documents. I imagine that the functionality would work somewhat similar to wikipedia where each topic has ...



