Is it possible to let the server create a static HTML pages which corresponds to the result of a PHP page.
To say it better...
1) I have a PHP page (test.php) with a table which reports the datas of a MySql DB
2) I want that when I visit that page there will be saved an HTML page (test.html) in the same folder of the server which contains the same things of test.php but without grabbing it from the DB.
Is there a way to do it automatically? Or do I have to save the page every time and then put it one the server via FTP?