I am using PHP DOMDocument class to parse the HTML file, and using the code,
$dom =new DOMDocument();
@$dom->loadHTMLFile($file_path);
$dom->getElementById("my_id")
to fetch the data of the element with the ID "my_id", but the problem is the HTML document is containing multiple elements with same ID, and i want the data in all that elements.. The HTML code,
<div id="my_id">
phone number 123
</div>
<div id="my_id">
address somewhere
</div>
<div id="my_id">
date of birth
</div>
i know the ID is unique, but here the case is like that.. in this case will getElementById() will return an array..
idhas to be unique throughout the entire html document (afaik there are no exceptions allowed). see w3.org/TR/html401/struct/global.html#h-7.5.2 – VolkerK Aug 17 '10 at 11:07idas an identifier the document is invalid and the thing parsing the document can do more or less anything, including: reject the document entirely, return the first element with that id, return the last element with that id, .... – VolkerK Aug 17 '10 at 11:13