Jump to content

cannot write to file


olegshilkrut

Recommended Posts

hi all

cant figure out how to write to file

uisng this code

 

<html>

<body>

<?php

 

$myFile = "test.txt";

$fh = fopen($myFile, 'w') or die("can't open file");

$stringData = "Bobby Bopper\n";

fwrite($fh, $stringData);

$stringData = "Tracy Tanner\n";

fwrite($fh, $stringData);

fclose($fh);

?>

 

</body>

</html>

please help me out here

Link to comment
https://forums.phpfreaks.com/topic/180717-cannot-write-to-file/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.