View Single Post
  #2  
Old 07-30-2011, 06:19 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
PHP Code:
temp.lines = {
  
"first line",
  
"second line",
  
"third line"
};

// if you want to append to the file instead of replacing, second parameter
// should be true
temp.lines.saveLines("path/to/file.txt"false); 
Serverside, obviously, and (npcserver) needs rw (folder rights) to the specified file.

To get an array of lines from a text file,

PHP Code:
temp.lines.loadLines("path/to/file.txt"); 
__________________
Reply With Quote