Quote:
Originally Posted by thedvs
cant find
Code:
$lives = trim($result);
to remove freebet in any livescores.php
|
look livescores.php
///////////////////////start live scores /////////////
$d = $_GET['d'];
if(is_null($d))
{
$url = "http://www.ns2.us/soccerfeed/slab/livescores.php";
}
else
{
$url = "http://www.ns2.us/soccerfeed/slab/livescores.php?d=$d&score=previous";
}
ob_start();
include("$url");
$lives = ob_get_contents();
$l1= "<a href='freebet.php' target=_blank class=bet>Free Bet</a>";
$lives= str_replace($l1,'',$lives);
ob_end_clean();
////////////end live scores/////////////////