Warptweet Posted January 20, 2007 Share Posted January 20, 2007 Of course, it's not that hard to create a file with PHP with a .php extension...$o = fopen("211612151419/".$_POST['flashname'].".php", "w");Although, I have another problem.It of course, creates a file thats called XXXXXXX.php, but, how can I make it so that it creates a file that is named XXXXXXX9182.php? So basically it's the exact same, except with 9182 at the end of the filename.Would it be like...$o = fopen("211612151419/".$_POST['flashname']9182.".php", "w");If thats not how I would do it, please help! Quote Link to comment Share on other sites More sharing options...
Jessica Posted January 20, 2007 Share Posted January 20, 2007 Did you try it yet?It would be$o = fopen('211612151419/'.$_POST['flashname'].'9182.php', "w"); Quote Link to comment Share on other sites More sharing options...
Warptweet Posted January 20, 2007 Author Share Posted January 20, 2007 Would that make it have 9182 at the end of the file name, and a .php extension? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.