Hi Community

I'll start off by saying that I don't have much experience with php but I
am worin on a little project and need a way to parse data out of a table
on a website and then format it in to way optimized site for easier viewing.
In researching a way to do this, I found that using PHP Simple HTML DOM Parser looks to be the easiest way. However, being so new to php, I am having a problem setting up the php file to read the contents of the table.

Here is the website with the table I am trying to parse:

http://schulnetz.nibis.de/db/schulen/schule.php?schulnr=42481&lschb=
http://www.schulministerium.nrw.de/BP/SchuleSuchen?action=109.2376390575227&SchulAdresseMapDO=116439

<?php
include_once('simple_html_dom.php');

$html = file_get_html('http://schulnetz.nibis.de/db/schulen/schule.php?schulnr=42481&lschb=');
$es = $html->find('table. xyz td')->plaintext;

?>

well can you give me some hints...Any and all help will be greatly appreciated

bh

    Write a Reply...