php - Simple HTML DOM missing data -
hello working on project trying pull data off of webpage. running issue items aren't being pulled.
<?php include('simple_html_dom.php'); // create dom url or file $html = file_get_html('http://www.websiteform.com/forum/items'); echo $html; ?>
i noticed when go page on forum link mouse tip displaying body of first post. pull info. looked @ html , see being displayed in title. ie:
<td class="alt1" id="td_threadtitle_877485" title="this body of actual first post">
but above code doesn't come across when dumping variable $html ie:
<td class="alt1" id="td_threadtitle_877485" title="">
has seen this?
Comments
Post a Comment