from index.html, I submit to submit to 1.php, solve form tasks and then need to return to .html. while I was on Denver it was solved like this:
include("../../index.html"); Moved to Open Server and include () stopped working. Achieved a transition like this:
include($_SERVER["DOCUMENT_ROOT"] . "/index.html"); But at the same html is loaded without styles and remains at the address of the php file. I tried:
header ($_SERVER["DOCUMENT_ROOT"] . "/index.html"); html is also loaded without styles and remains at the address of the php file. Tell me how to fix it?