Page generation tweeking

2003-07-23 Thread Farrington, Ryan
Title: Page generation tweeking Ok I have a page that reads 2 files into arrays. Pretty simple stuff like this: open(FILE, file1.txt); @file1 = FILE; close(FILE); open(FILE, file2.txt); @file2 = FILE; close(FILE); Now file1 contains a complete list of users. And file2 contains

Re: Page generation tweeking

2003-07-23 Thread Carl Jolley
On Wed, 23 Jul 2003, Farrington, Ryan wrote: Ok I have a page that reads 2 files into arrays. Pretty simple stuff like this: open(FILE, file1.txt); @file1 = FILE; close(FILE); open(FILE, file2.txt); @file2 = FILE; close(FILE); Now file1 contains a