Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 07-27-2005, 02:56 AM   PM User | #1
vern
New Coder

 
Join Date: Sep 2004
Location: Minnesota, USA
Posts: 32
Thanks: 0
Thanked 0 Times in 0 Posts
vern is an unknown quantity at this point
Problem with writing to file.

The following code appends to file successfully and works perfectly.

Code:
$handle = fopen("recent.txt", 'a');
fwrite($handle, $add);
fclose($handle);
However ... this code doesn't seem to write to the file. The only different is that I want this code to set the pointer at the beginning of the file instead of the end. Anybody have any clues to what is going on?

Code:
$handle = fopen("recent.txt", 'r+');
fwrite($handle, $add);
fclose($handle);
__________________
ribbed.us
---
To err is human, to moo bovine.
vern is offline   Reply With Quote
Old 07-27-2005, 02:29 PM   PM User | #2
nikkiH
Senior Coder

 
nikkiH's Avatar
 
Join Date: Jun 2005
Location: Near Chicago, IL, USA
Posts: 1,973
Thanks: 1
Thanked 32 Times in 31 Posts
nikkiH is on a distinguished road
File might be locked.
Check.

http://us3.php.net/manual/en/function.fopen.php#37553
__________________

If this post contains any code, I may or may not have tested it. It's probably just example code, so no getting knickers in a bunch over a typo, OK? If it doesn't have basic error checking in it, such as object detection or checking if objects are null before using them, put that in there. I'm giving examples, not typing up your whole app for you. You run code at your own risk.
Bored? Visit
http://www.kaelisspace.com/
nikkiH is offline   Reply With Quote
Old 07-28-2005, 05:38 PM   PM User | #3
vern
New Coder

 
Join Date: Sep 2004
Location: Minnesota, USA
Posts: 32
Thanks: 0
Thanked 0 Times in 0 Posts
vern is an unknown quantity at this point
Apparently I had to read out the contents and then append to the stream. Got it to work now.
__________________
ribbed.us
---
To err is human, to moo bovine.
vern is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 08:45 PM.


Advertisement
Log in to turn off these ads.