Could someone help me with this? The php code writes the html file but it doesn’t work.
[php]
<?php $new_file = "new-file.html"; $handle = fopen($new_file, 'w') or die('Cannot open file: '.$new_file); $data =" New-file
text
";
fwrite($handle, $data);
?>
[/php]