I have outside HTML file, that I read to PHP variable. In this HTML file there are different dates(and times). What would be the easiest way to read them to variable.
Date-time is always in the following format:
<td align="left" valign="middle" class="contentValueFont">01-Mar-14 19:24:45 GMT</td>
Ofcourse date and time change.
In other place I used to search with class name and read all the following to variable until </td>
comes, but this time same class name is used in different places, not associated with my date/time.
I am not good at regular expressions.
Thanks for help. T.