Jump to content

Problems with opening files


Btown2

Recommended Posts

[code]<?php
$name=$_POST['namebox'];
$message=$_POST['message'];

$values = "$name\r\n";
$values .= "$message\r\n"; 

// Open the file for truncated writing
$fp = @fopen("new.txt", "a+") or die("Couldn't open board.");
@fwrite($fp, $values) or die("Couldn't write values to file!");

@fclose($fp);



$fp = @fopen("test.txt", "rb") or die("Couldn't open file");
$data = fread($fp, filesize($fp));

while(!feof($fp))
{
$data .= fgets($fp, 1024);
}

fclose($fp);

$values = explode("\r\n", $data);

echo $values[0] . "<br> ";
echo "<br>";
echo "<br>";


?> [/code]

This is supposed to pen a text file and right into it, then close it, reopen it and read out everything, but it always fails in making the file, any idears why?
Link to comment
https://forums.phpfreaks.com/topic/25220-problems-with-opening-files/
Share on other sites

Hmm maybe ive done this wrong, i still get no other error messages.

[CODE]
<?php
          error_reporting(E_ALL);

$name=$_POST['namebox'];
$message=$_POST['message'];

$values = "$name\r\n";
$values .= "$message\r\n"; 

// Open the file for truncated writing
$fp = fopen("new.txt", "a+") or die("Couldn't open board.");
fwrite($fp, $values) or die("Couldn't write values to file!");

fclose($fp);



$fp = fopen("test.txt", "rb") or die("Couldn't open file");
$data = fread($fp, filesize($fp));

while(!feof($fp))
{
$data .= fgets($fp, 1024);
}

fclose($fp);

$values = explode("\r\n", $data);

echo $values[0] . "<br> ";
echo "<br>";
echo "<br>";


?>
[/CODE]

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.