Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
xainiken каза:Така ли искаш да стане ?
<?php
$readfile =file_get_contents("http://www.bnb.bg/bnb/rates.nsf/vWebRatesByMonthEN/\$First/" ,"r");
$searchfile = eregi("<HTML>(.*)</HTML>", $readfile ,$arrayreg);
$filechunks = explode("<tr><td><font face=Verdana", $arrayreg[0]);
$count = count($filechunks);
echo "<table border='1'>";
echo "<th colspan='5'>Кражба на валутни курсове. Smile </th>";
for($i=1 ; $i<=$count-1 ;$i++)
{
ereg("<td align=right><font face=Verdana size=1>(.*)</font></td>",$filechunks[$i], $pari);
ereg("<font face=Verdana size=1><b>(.*)</b></font>",$filechunks[$i], $valuta);
echo "<tr><td>";
echo $pari[1];
echo "</td><td>";
echo $valuta[1];
echo "</td></tr>";
}
echo "</table>";
?>
ам.. не.hrischo каза:<?php
$content=file_get_contents("http://www.sce-bg.com/bg/contents/oferti/zarno.htm ",FALSE,NULL,0,33000);
echo $content;
?>
Така ?
<?
$readfile =file_get_contents("http://www.sce-bg.com/bg/contents/oferti/zarno.htm");
//Махам всички тагове////////
$readfile=strip_tags($readfile);
/////////////////////
eregi("група(.*)доставка -", $readfile ,$arrayreg);
echo $arrayreg[1];
eregi("август '07(.*)", $readfile ,$info);
$cena2=substr($info[1],0 , 50);
echo "<br/>".$cena2;
?>