Previous Thread
Next Thread
Print Thread
Rate Thread
#102406 03/08/2001 1:27 PM
Joined: Aug 2000
Posts: 53
Member
Member
Offline
Joined: Aug 2000
Posts: 53
Just a quicky question. How would I change one line in a file? I have a comment feature on this journal script I run, and I want to make it possible for editing of comments. I store the messages in a file for that journal entry, and have each comment on a new line, and the various info such as name, date, etc. being split by pipestems (|). So that being said, how would I be able to keep the rest of the file, but reprint the new info for that one line. I know how to splice, but I can't figure out how to reprint that new line if it is in the middle of a file.

[ March 08, 2001: Message edited by: Scud Muffin ]


* Insert cliche' quote/sentence/image here *
Sponsored Links
Joined: Jul 2000
Posts: 1,349
Ell Offline
Member
Member
Offline
Joined: Jul 2000
Posts: 1,349
open FILE,"+>/path/to/file";
@myfile = ;
$myfile[$linenumber_you_want_to_change - 1] = "what you want that line to be";
foreach $line(@myfile) {
print FILE "$line";
}
close (FILE);

Q for Mark: can you skip the foreach and just print the array directly? I assume so, but decided to be cautious...

Joined: Aug 2000
Posts: 53
Member
Member
Offline
Joined: Aug 2000
Posts: 53
Hmm, the code you pasted just wrote the one line that changed to the file, not the rest of the file.

I came up with some code of my own, it works, but I am not sure how secure it is:

Code
code:

I was going to use the rename(whatever.whatever, whatever.bak) feature, but I couldn't get it to work.


* Insert cliche' quote/sentence/image here *

Link Copied to Clipboard
Donate Today!
Donate via PayPal

Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.

Please also see our parent organization VNC Web Services if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services.
Recommended Hosts
We have personally worked with and recommend the following Web Hosts:
Stable Host
bluehost
InterServer
Visit us on Facebook
Member Spotlight
isaac
isaac
California
Posts: 1,157
Joined: July 2001
Forum Statistics
Forums63
Topics37,573
Posts293,925
Members13,849
Most Online5,166
Sep 15th, 2019
Today's Statistics
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
Top Posters
AllenAyres 21,079
JoshPet 10,369
LK 7,394
Lord Dexter 6,708
Gizmo 5,833
Greg Hard 4,625
Top Posters(30 Days)
Top Likes Received
isaac 82
Gizmo 20
Brett 7
WebGuy 2
Morgan 2
Top Likes Received (30 Days)
None yet
The UBB.Developers Network (UBB.Dev/Threads.Dev) is ©2000-2024 VNC Web Services

 
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20221218)