OK, here's what I'm thinking I'll do. I need something that will take my input and write it to a text file like this:
5 inches
good
34
4
It would write each variable to a different line in a text file. I would then call the info by
$myfile = file('/path/to/file.txt');
New Snow: <? echo $myfile[0]; ?>
Coverage: <? echo $myfile[1]; ?>
Trails: <? echo $myfile[2]; ?>
Bla Bla: <? echo $myfile[3]; ?>
Which of course would look like
New Snow: 5 inches
Coverage: Good
Trails: 34
Bla Bla: 4
So can someone show me how to make a form that will write to a text file with one variable per line? The info has to get overwritten each time as well. Thanks for any help. If anyone has a better way to update a huge snowreport a few times a day, let me know. This is what I have to update http://mthigh.com/pages/snowreport.shtml
Thanks again.