blacktiger786 Posted January 26, 2015 Share Posted January 26, 2015 hi friends need some helpi want get title , seed , peer , download link from this url https://kickass.so/games/i am create code but i am not able to found specific tag $html = file_get_html('https://kickass.so/games/'); $last200area = $html->find('table[class="data"]', 0); $last200 = $last200area->find('div[class="torrentname"]'); foreach ($last200 as $onesearch) { $onesearch = strip_tags($onesearch); echo $onesearch; } Link to comment https://forums.phpfreaks.com/topic/294240-some-help-need-tags-read-from-file_get_html/ Share on other sites More sharing options...
ginerjm Posted January 26, 2015 Share Posted January 26, 2015 The function 'file_get_html' doesn't exist in my version (?) of the PHP manual. How are we supposed to help you when we don't know what your code looks like? Link to comment https://forums.phpfreaks.com/topic/294240-some-help-need-tags-read-from-file_get_html/#findComment-1504234 Share on other sites More sharing options...
blacktiger786 Posted January 26, 2015 Author Share Posted January 26, 2015 what you said file_get_html function not exist check it in google . its work but in this site i am not able to search specific tag Link to comment https://forums.phpfreaks.com/topic/294240-some-help-need-tags-read-from-file_get_html/#findComment-1504235 Share on other sites More sharing options...
ginerjm Posted January 26, 2015 Share Posted January 26, 2015 It apparently is an add-on to standard php. You'll have to find someone who uses this add-on for help. Link to comment https://forums.phpfreaks.com/topic/294240-some-help-need-tags-read-from-file_get_html/#findComment-1504238 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.