If you don't have access to the database, scraping the html pages, following links, and determining post-date & post-user from the HTML itself seems to only way to gp. (HTTPRequest
or cURL
for fetching, in combination with DOMDocument
/ DOMXpath
for reliable HTML parsing & finding explicit nodes), storing it in your own database. All in all, depending on the exact HTML layout of the forums, not exactly complicated, but a lot of work, and possibly work you have to repeat again and again with small variations for each different forum.
If the forums have RSS feeds or other means of getting more structured content / data the amount of work needed could be greatly reduced.