Sean
Don't Worry, Be Happy
I want to take a small piece of text of an other site and echo on my site
so for example say I want to take the number of posts from my account I have this:
This then displays the entire page on my site / localhost, so What I want to do it narrow down the scraping to the contents inside one DIV or CLASS that is in the CSS of devbest so that say the message is like
<div class="post_count">300</div>
I want to echo just that div from devbest, to display "300" any help
so for example say I want to take the number of posts from my account I have this:
PHP:
<?php
$page = file_get_contents("http://devbest.com/members/seandavies.10142/");
echo $page;
?>
This then displays the entire page on my site / localhost, so What I want to do it narrow down the scraping to the contents inside one DIV or CLASS that is in the CSS of devbest so that say the message is like
<div class="post_count">300</div>
I want to echo just that div from devbest, to display "300" any help