hello guys does anybody knows what is causing this error message? :
Warning: fopen(C:\xampp\htdocs\PhpMain\testing.rtf): failed to open stream: No error in C:\xampp\htdocs\PhpMain\create_file.php on line 4
here is the code:
<?Php
$output='';
$fileId = fopen("C:\xampp\htdocs\PhpMain\testing.rtf" , 'W') or die("failed to create");
$fileContent = 'Welcome to Kelumi Automobile where we specialise in buying and selling of luxurius cars to fit your personality,
style and your taste.
kezlumi Automobile is a well know American company that have been serving people of interest for more than 15 years.
our aims is to satisfy the market by give them long lasting unforgetable customer service.
offer the market competitive price and sales after service.';
fwrite($fileId, $fileContent) or die("could not create file");
fclose($fileId);
echo "File 'textfile.' written successfully";
?>