Possible Duplicate:
How to parse and process HTML with PHP?
Hi there I have scraped a web page
<div class="col blue">
<img src="/en/media/Dentalscreenresized.jpg" />
<h4>This is line i want to scrape</h4>
<p class="date">12 Sep
<span class="year">2012</span></p>
<p>13 people were diagnosed with oral cancer after last year’s Mouth Cancer Awareness Day. Ring 021-4901169 to arrange for a free screening on the 19th September.</p>
<p class="readmore"><a href="/en/news/abcd.html">Read More</a></p>
<p class="rightreadmore"><a href="http://www.xyz.ie/en/news/">See all News </a></p>
</div>
Now i want to display the <h4>
tag of class="col blue"
.I seen online to use preg_match_all()
I am not familiar with regular expression... any help please