I have the following HTML code
<b>Description: </b>TEXT TO BE GRABBED<br>
I need to use preg_match function to grab the "TEXT TO BE GRABBED".
I have tried the following without success:
<?php preg_match('#<b>Description: </b>(.*)<br>#', $content, $match); ?>
Can someone explain to me the proper method of extracting the text from the HTML?
Thank you.