Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 09-03-2007, 08:34 AM   PM User | #1
graham23s
Regular Coder

 
Join Date: Jul 2007
Location: Scotland
Posts: 134
Thanks: 12
Thanked 0 Times in 0 Posts
graham23s is an unknown quantity at this point
Reading certain data from another website

Hi Guys,

for a type of review site i was wanting to get the average votes for a movies and then display it on my site, the site is imdb, just the number of votes i was trying to get

i have so far:

PHP Code:
<?php
//=====================================================================================//
// IMDB get rating...
//=====================================================================================//

$str_text file_get_contents("http://www.imdb.com/title/tt0373883/"); 

$pattern '/(h1|src)=[\'"]/'

preg_match_all($pattern$str_text$matches); 

echo 
"<pre>"
var_dump($matches); 
echo 
"</pre>"
?>
in imdb the rating is in this code:

PHP Code:
</div>
<
div class="general rating">
<
div class="starbar static"><div class="outer"><div class="inner" style="width: 64px"></div></div></div>
<
b>User Rating:</b
<
b>3.2/10</b
  <
small>(<a href="ratings">323 votes</a>)</small>
<
div class="bottom"
so many spans in the code not sure how to set up the reg ex any help would be appreciated

Graham
graham23s is offline   Reply With Quote
Old 09-03-2007, 12:53 PM   PM User | #2
Iszak
Regular Coder

 
Iszak's Avatar
 
Join Date: Jun 2007
Location: Perth, Western Australia
Posts: 332
Thanks: 2
Thanked 58 Times in 57 Posts
Iszak is an unknown quantity at this point
If I remember correctly this is illegal unless without permission. Plus it's not recommended as you've got to load 2 websites, which make your visitors wait longer to load, and if I remember reading a review and it said so many viewers leave if the website takes too long to load, and it was a very high percentage, so I suggest you make your own vote database.
Iszak is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 08:23 PM.


Advertisement
Log in to turn off these ads.