It doesn't get much easier than using [man]fgetcsv/man to parse the document into columns, really.
wiredChamber wrote:How can I find the slot for cubic feet per second?
Look at the data ([man]print_r/man is useful for displaying arrays in a readable format, assuming you either use <pre>..</pre> tags or just view the source of the page in your browser) and reference whatever column(s) you want. In your loop above, you only echo'd out the first column.
EDIT: Also note that your use of [man]fgetcsv/man is incorrect above; you specified a space as the delimiter, when the webpage clearly says (and displays) data in a "tab-separated" format.
EDIT2: You also appear to have transposed the last two numbers in the URL in your sample code above, resulting in an error page ("No site found.").