I need to save my .php
file as an .html
for backup with using PHP whenever page called (I am going to use ob_start()
for it). But the page content is not static. I am using AJAX to load the content.
That's why view-source:
does not show the dynamic data, only chrome inspector show them. But I need to save the page with all elements after page loads. Is it possible or not?
BTW after page loads, there is no any other ajax call (on click or something). Page loads all content on init.
Thanks in advance.