tobeyt23 Posted January 8, 2018 Share Posted January 8, 2018 $url = 'https://www.valuationexpo.com/charleston-schedule/'; $content = file_get_contents($url); $first_step = explode( '<article id="page-6417" class="mpcth-page post-6417 page type-page status-publish hentry">' , $content ); $second_step = explode("</article>" , $first_step[0] ); echo $second_step[0]; Looking to pull the content in the article id="page-6417" element. Is this the best way to do so? Quote Link to comment https://forums.phpfreaks.com/topic/306105-pull-specific-div-content-from-a-url/ Share on other sites More sharing options...
Barand Posted January 8, 2018 Share Posted January 8, 2018 try this http://php.net/manual/en/domdocument.getelementbyid.php Quote Link to comment https://forums.phpfreaks.com/topic/306105-pull-specific-div-content-from-a-url/#findComment-1555146 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.