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
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]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.