1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Pulling data from another website via php

Discussion in 'PHP' started by NewComputer, Jan 15, 2005.

  1. #1
    Hey gang,

    I have taken over a site for a local hockey team. The previous webmaster did a so-so job, but it is the owners son, so what can I say. Anyhow, I want to pull the league leaders etc.... from the League's mainpage and have it display on the teams page. I have seen this done via php, but I am wondering how it is done and what I need to do.

    Is there a script that would do this?
     
    NewComputer, Jan 15, 2005 IP
  2. Dirkjan

    Dirkjan The Dutch SEO Guy

    Messages:
    528
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    138
    #2
    <? include('http://www.yoursite.com/yourfile.php'); ?>

    thats it.
     
    Dirkjan, Jan 15, 2005 IP
  3. NewComputer

    NewComputer Well-Known Member

    Messages:
    2,021
    Likes Received:
    68
    Best Answers:
    0
    Trophy Points:
    188
    #3
    Thanks Dirk,

    but how do you get specific data from the page and not all the data. There is a certain portion that I am looking to use.
     
    NewComputer, Jan 15, 2005 IP
  4. johnt

    johnt Peon

    Messages:
    178
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    0
    #4
    You can use the normal file commands (fopen, fread etc) on URLs, so you could do

    $string = file_get_contents("http://www.domain.com/file.html")​

    and then use string manipulation functions or regular expressions to extract whatever text you're after.
    Bear in mind, though, that this will get all the html tags as well as the text, so you will need to take account of this when constructing your search patterns.

    Cheers

    John
     
    johnt, Jan 16, 2005 IP
  5. phrozen_ra

    phrozen_ra Peon

    Messages:
    147
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #5
    phrozen_ra, Jan 16, 2005 IP