|
copy files from a folder to a newly created folder..
Creating the mapp works fine, copy to a certain folder works fine but not to the newly created folder doesn´t work.
error message..
Warning: copy($mappnamn/stil.css) [function.copy]: failed to open stream: No such file or directory in /home/kundzonen/public_html/reg2.php on line 11
failed to copy test44/stil.css... Folder asdf created!
Can anyone help me ?
--------------------------------------------------------------------------------------------------------------
$foldername = $_POST[foldername];
mkdir($foldername);
$file = 'test44/stil.css';
$newfile = '$foldername/stil.css';
if (!copy($file, $newfile)) {
echo "failed to copy $file...\n";
}
echo "Folder";
echo " ";
echo $foldername;
echo " ";
echo "created!";
|