I've been trying to simply extract "the next episode number" from a TV episodes tracking website. Here's an example page:
Scroll down and you'll see "Countdown", "Date", "Season" and "number". I'd like to extract that number.
I've been looking at the source code as well as Simple HTML DOM to try and work something out but I failed multiple times. The "number" has the class "nextEpInfo" but the "Countdown", "season"...etc have the same class as well.
How would I go about extracting it?
Also if possible I'd really appreciate some good references that explain the method that you recommend as I'd ideally like to learn how to deal with these situations in the future when content I need extracted is wrapped inside different classes, divs...etc.