|
$paring=mysql_query("select time,eetris from live ORDER BY time desc LIMIT 1");
if($paring){
while($rida=mysql_fetch_array($paring)){
$lause=$rida["eetris"];
$lausepikkus=strlen($lause);
$esitajalopp=strpos($lause, ", ");
$esitaja=substr($lause,0,$esitajalopp);
$lugu=substr($lause,$esitajalopp+2);
//$lause=substr($lause, 0, $lausepikkus-15);
echo "<font color='ffffff'>";
echo "<b>".$esitaja."</b>,<br>";
echo $lugu."<br>";
[25] echo "(".date("H:i",trim($extract["time"])).")";
echo"</font>";
}
}
mysql_close();
?>
|