if i have a simple html form like the one below....
<form action="process.php" method=post>
<br> <input type="text" name="name"><br>
<textarea name="html"></textarea>
</form>
assuming that the textarea with the name "html" contains html code. how do i make the the PHP file "process.php" create a separate html file and put the contents of "html" textarea in side the newly created html file???