SyntaxFix
Write A Post
Hire A Developer
Questions
It's creating the file in the same directory as your script. Try this instead.
$content = "some text here"; $fp = fopen($_SERVER['DOCUMENT_ROOT'] . "/myText.txt","wb"); fwrite($fp,$content); fclose($fp);