DOM-Document: need help to apply this

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
lin
Forum Commoner
Posts: 49
Joined: Tue Dec 07, 2010 1:53 pm

DOM-Document: need help to apply this

Post by lin »

Hi Folks, good day


I am trying to scrape the price data from a webpage, but how to get the variable,

see here the target http://www.buergerstiftungen.de/cps/rde ... xsl/db.htm

Code: Select all

include 'simple_html_dom.php';
$html1 = file_get_html('http://www.buergerstiftungen.de/cps/rde/xchg/SID-635E10F9-BFA1A4BF/buergerstiftungen/hs.xsl/db.htm');

$info1 = $html1->find('b[class=[what to enter herer ]',0);

The variable then also contains data such as

<b class="info"> info </b>

Is there a way to trim the unwanted data out ? I just need all the infos out of the site. I am unsure if I do it during the find, or perhaps when i echo out the variable, then do I specify what I want ?

well how t o do it witout a regex but with DOM-Document!?
Post Reply