I can currently take the form information and generate a preview of the html page I want, but I still can't write this preview page to the server.
For example:
---form.html--------------
<FORM ACTION="preview.php" METHOD=POST>
Title:<input type="text" name="page_title">
<INPUT TYPE=SUBMIT NAME="preview" VALUE="SUBMIT">
</FORM>
---preview.php------------
<head>
<title><?php echo("$page_title"); ?></title>
</head>
.
.
(some page contents passed from the form)
.
.
I want to save this preview.php page as a NEW static html page on my server.
Thanks for any help,
Dan Cosack