Let me start by stating that I am very much a beginner with PHP but have enough programming experience with other languages that I'd like to skip the absolute basics and focus on the functions that will best satisfy what I'm trying to accomplish.
I maintain many automated weather stations that continually post data to various web severs/locations. One way in which data from each station is posted is a list of data element labels and tag values as a simple html web page on an FTP server. An example can be seen here: ftp://ftp.udot.utah.gov/r1udot/weather/R1WS-1435-UDOT/WeatherLink/Images/AllVP2Tags.htm
From approximately 25 pages similar to the example, I want to figure out the best approach to "query" specific data values from any number of corresponding labels. For example: I'd like to display a table with the Station Name (from line/row 1) and the Outdoor Temperature (from line/row 30) for all 25 stations (or from all 25 web pages.) From there, I'll probably be interested in creating the ability to "turn on/off" any of the stations and specify what data elements are listed.
I'm assuming this is probably fairly simple and straightforward and am looking for suggestions as to what functions might be considered the best approach. Thanks!!