I am relatively new to the whole idea for HTML parsing/scraping. I was hoping that I could come here to get the help that I need!
Basically what I am looking to do (i think), is specify the url of the page I wish to grab the data from. In this case - http://www.epgpweb.com/guild/us/Caelestrasz/Crimson/
From there, I want to grab the table class=listing in the div id=snapshot_table.
I then wish to embed that table onto my own page and have it update when the original content is updated.
I have read a few of the other posts on Google and Stackoverflow, I also had a look at a tutorial on Nettuts+ but it just seemed to be a bit too much to take in at once.
Hopefully someone here can help me out and make this as simple as possible :)
Cheers,
Mat
--Edit--
Current code as of 11:22am (GMT+10)
<?php
# don't forget the library
include('simple_html_dom.php');
?>
<html>
</head>
<body>
<?php
$html = file_get_html('http://www.epgpweb.com/guild/us/Caelestrasz/Crimson/');
$table = $html->find('#snapshot_table table.listing');
print_r($table);
?>
</body>
</html>