[PHP]RuneScape Latest News Parser

Discussion in 'Web Programming' started by PedoBear, Jul 12, 2008.

Thread Status:
Not open for further replies.
[PHP]RuneScape Latest News Parser
  1. Unread #1 - Jul 12, 2008 at 6:07 AM
  2. PedoBear
    Joined:
    Apr 22, 2008
    Posts:
    92
    Referrals:
    0
    Sythe Gold:
    0

    PedoBear Member
    Banned

    [PHP]RuneScape Latest News Parser

    Code:
    <?php
    function ss_between($string,$start,$end) {
       $string=" ".$string; //The string.
       $startpos=strpos($string,$start); //Find the position of the start string.
       //Check if $startpos equals zero.
       if ($startpos == 0) {
          //If $startpos does equal zero, do this:
          return false; //Return false.
       }
       else {
          //If $startpos doesn't equal zero, do this:
          $startpos+=strlen($start); //Add the string length of $start to $startpos.
          $endpos=strpos($string,$end,$startpos)-$startpos; //Find the string position of $end.
          return substr($string,$startpos,$endpos); //Return the new value.
       }
    }
    $_news["source"]=file_get_contents("http://www.runescape.com/");
    $_news["first"]=ss_between($_news["source"],'<div class="recentNews">','<div class="sectionBody">');
    $_news["title"]=ss_between($_news["first"],'<h3>','</h3>');
    $_news["date"]=ss_between($_news["first"],'<span>','</span>');
    $_news["news"]=ss_between($_news["first"],'<p>','</p>');
    echo("<b>[TITLE]</b> ".$_news["title"]."<br />");
    echo("<b>[DATE]</b> ".$_news["date"]."<br />");
    echo("<b>[NEWS]</b> ".$_news["news"]."<br />");
    ?>
    That will go to runescape.com and get the latest news. Then from that news it will parse the title, date, and actual news portion of it and display it. Have phun.

    Made by AADude. LOLOLO
     
  3. Unread #2 - Jul 12, 2008 at 10:52 PM
  4. cp
    Joined:
    Jan 30, 2007
    Posts:
    3,278
    Referrals:
    6
    Sythe Gold:
    0

    cp an cat
    Banned

    [PHP]RuneScape Latest News Parser

    I don't think you are AADude... you should stop posting his code.
     
  5. Unread #3 - Jul 12, 2008 at 10:58 PM
  6. cp
    Joined:
    Jan 30, 2007
    Posts:
    3,278
    Referrals:
    6
    Sythe Gold:
    0

    cp an cat
    Banned

    [PHP]RuneScape Latest News Parser

    Locked for ripping.
     
< [vB 3.7.x/3.6.8?][SSLC]StephSoft Link Checker | Delphi Help >

Users viewing this thread
1 guest
Thread Status:
Not open for further replies.


 
 
Adblock breaks this site