I need to update this page http://mthigh.com/pages/snowreport.shtml
I tried using a form that saved the variables one per line like this
good
5
groomed
powder
bla bla
And then called the data into the snowreport page using
<?php $snow = file('../dynamic/snowreport.txt'); ?>
New Snow: <?php echo $snow[0] ?>
Conditions: <?php echo $snow[1] ?>
Lifts: <?php echo $snow[2] ?>
That worked fine but I am having trouble with populating the form with the current info stored in the text file, especially drop downs. Is there a better way to do this? The snow report gets updated every day and sometimes we only need to update one or two variables so it's important that the form stay populated with the current info. Thanks for any help!