Thread: IMDB
View Single Post
  #14  
Old 10th November 2010, 23:54
balu45's Avatar
balu45 balu45 is offline
Member
 
Join Date: Sep 2010
Hungary
Posts: 8
Default
Quote:
Originally Posted by lafouine022 View Post
Do you plan a fix for the Country?
FIND:
Code:
$regex = '#<div class="txt-block"><h4 class="inline">Country:</h4><a(.*)>(.*)</div>#U';
REPLACE WITH:
Code:
$regex = '#<div class="txt-block"><h4 class="inline">Country:</h4>(.*)</div>#U';
FIND:
Code:
<b>Country:</b> ' . strip_tags (str_replace ('more', '', $country[0][2]))
REPLACE WITH:
Code:
<b>Country:</b> ' . strip_tags (str_replace ('more', '', $country[0][1]))
Click the image to open in full size.
Reply With Quote
The Following 4 Users Say Thank You to balu45 For This Useful Post:
Fynnon (16th November 2010), lafouine022 (25th November 2010), lateam (28th November 2010), Marco (29th November 2010)