How can I call/open a remote html document and then read through it to extract some data.
Here is the html I would need to locate within the file.
the first tag would be "Order" & I then need to go down and get the number "89".
Then I need to read down to the next tag "Information" and extract the associated data "34"
The tags remain the same but the numbers change daily !
<p align="center">Order
</p>
</td>
<td>
<p align="center">89
<p align="center">Information
</p>
</td>
<td>
<p align="center">34
Many thanks in advance,
Pedro