I want to use the function preg_match_all to catch data in a web page
------------------------------------------------------------------------------------------
int preg_match_all ( string $pattern , string $subject , array &$matches [, int $flags [, int $offset ]] )
Searches subject for all matches to the regular expression given in pattern and puts them in matches in the order specified by flags .
After the first match is found, the subsequent searches are continued on from end of the last match.
------------------------------------------------------------------------------------------
for example, if I want to catch the text between
<p id="review_45616996">
and
</p>
how should I write the expression?