I have made a form script in PHP which when you fill in all the information makes a template website. How can i have things like when you have created your HTML page it automatically creates the file as an HTML document on the server? Max Slade.
You can use output-buffering. That will store everything you print/echo etc in a buffer. When you are finished printing you can read the buffer and save it to a file. Et presto, a saved copy of your page.
How do i do the buffer thing? I have apache on a windows system, Max Slade
http://www.php.net/manual/en/function.ob-start.php