I'm not really well versed in web development techniques so I'm not sure if I'm describing it properly.
What I'd like to do is to be able to remotely access the content of a page that don't immediately appear when the page loads and don't show up on the page's source. Say, a tiny panel inside an article of a blog that shows the titles/links of the latest blog posts (for example). I don't know what it uses to achieve this (AJAX?) but using fopen() on my side only shows the static(?) content, not the bits that seem to load from somewhere else.
I wan't to retrieve from a remote page everything of a remote page that an user will be able to see with a browser, after everything is properly loaded. Is this possible? Thanks.