Jeg får ingen fejlmelding, men den fil jeg skriver til, kommer bare til at hedde Ressource #7... her er min kode:
$mappe = $_GET['mappe'];
$mypath = str_replace(" ", ".", $mappe);
mkdir($mypath,0777,TRUE);
chdir($mypath);
$filename = 'upload.php';
$handle = fopen($filename,"x+");
$handle2 = fopen("../upload.php","r");
$content = str_replace("serie", "$mypath", $handle2);
fwrite($handle,$content);
fclose($handle);
fclose($handle2);