any ideas on how to make a generated page be created into an existing folder on a server?
WriteFile($FILES['result']."article.php",$html);
want it to be created into a folder such as: articles/article.php
the folder is already cmod 777
i'm lost
It sounds like you want to use the mkdir() function. Regardless, if you check out this page of the manual, you'll the list of PHP functions available to you:
http://www.php.net/manual/en/ref.filesystem.php
Once you've gone over the list and selected what sounds close to the functions that you need to use, it should just be a matter of following the manual's sample code and/or the user comments/contributions.
thank you - going to look into!