Live Cricket Score Board - Rediff Source

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Live Cricket Score Board - Rediff Source

    PHP Code:
    <?php
    $filename 
    "http://livechat.rediff.com/sports/score/score.txt";
    $fp fopen$filename"r" ) or die("Couldn't open $filename");
    while ( ! 
    feof$fp ) ) {
       
    $line fgets$fp1024 );
       print 
    "$line<br>";
    }
    echo
    "© opticalpigion";
    ?>
    save as score.php or yourname.php

    this file will show only BATTING.

    i was used this file in my site to display live score.

    i will be very thankful if you leave my name there
    sigpic
Working...
X