I need a little help with creating files after creating a directory.
<?php $name = $_GET['name'];
mkdir("$name");
/*I want two files to be created immediately after the dir is created e.g index.php & count.txt with some values in them in the directory "$name". How do I do that?*/ ?>
<?php $name = $_GET['name'];
mkdir("$name");
/*I want two files to be created immediately after the dir is created e.g index.php & count.txt with some values in them in the directory "$name". How do I do that?*/ ?>
Comment