I want to create and save a file to the root directory of my site. And I want the file to be overwritten every time.
Code:
$content = "some text here";
$fp = fopen("myText.txt","wb");
fwrite($fp,$content);
fclose($fp);
How can I set it to save on the root?