Whats the PHP code to
1. Make a new file under the name you have typed in
2. Make a new directory under the name you have typed in
I have been searching for ages on google
Help plz?
Danny, do you still have the code from cutenewser?
Printable View
Whats the PHP code to
1. Make a new file under the name you have typed in
2. Make a new directory under the name you have typed in
I have been searching for ages on google
Help plz?
Danny, do you still have the code from cutenewser?
Create a file via normal write
<?php
//What we want to call it
$File = "YourFile.txt";
// Create it
$newfile = fopen($File, 'w');
?>
ThanksQuote:
Originally Posted by Nets
+rep each if i can