You don't have an account yet?
Become part of our PHP community and register now...
$filename="test"; $dir = mkdir($filename, 0777); $datei="/test/index.php" if (file_exists($datei)!=true) { $fp = fopen($datei,"w+"); flock($fp,2); fputs($fp,"Hallo"); flock($fp,3); fclose($fp); }
Comment