Witam udało mi się napisac skrypt, który pobiera tylko czesc danych z kodu zródłowego innej strony, ale problem w tym ze zmienna $data ma miec wartosc "Yes" lub "No" ale czasami zapisuje sie w niej "head" i nie wiem dlaczego... Może ktoś z Was bedzie tak miły i mi rozjaśni tą sytucję, poniżej zamieszczam kod:
<?php
function kto_gra_wr($id){
$data=file_get_contents('http://ops.warrock.net/showprofile.aspx?p='.$id.'') ;
$data=str_replace(array("\r\n", "\r", "\n", "\t", "\0", "\x0B"), '', $data);
$data=ereg_replace(">[[:space:]]+<",'><', $data);
$pozycja = strpos($data, '<div class="PlayingStatus">');
$data=substr($data, $pozycja);
$pozycja = strpos($data, 'Server:');
$data=substr($data,0, $pozycja);
ereg(">[[:punct:][:space:]]*([[:alnum:]]+)[[:punct:][:space:]]*<", $data, $match);
$data=$match[1];
if($data == 'Yes'){
echo '<img src="http://tdk-squad.com/on.JPG"> OnLine';
}
elseif($data == 'No'){
echo '<img src="http://tdk-squad.com/off.JPG"> OffLine';
}
elseif($data == 'head'){
echo 'Error! 102 skontaktuj się z Krzyskiem:)';
}
}
?>
<font color='orange'><b>Neron87v:</b></font> <? kto_gra_wr(183138); ?><hr/>
<font color='orange'><b>Mar00x:</b></font> <? kto_gra_wr(125649); ?><hr/>
<font color='orange'><b>xpr3stiq3x:</b></font> <? kto_gra_wr(187756); ?><hr/>
<font color='orange'><b>Qdl@ty:</b></font> <? kto_gra_wr(192487); ?><hr/>
<font color='orange'><b>Seb00x:</b></font> <? kto_gra_wr(197783); ?><hr/>
<font color='orange'><b>Zielony666:</b></font> <? kto_gra_wr(201591); ?><hr/>
<font color='orange'><b>Balon11:</b></font> <? kto_gra_wr(215417); ?><hr/>
<font color='orange'><b>Chees87:</b></font> <? kto_gra_wr(130387); ?><hr/>
<font color='orange'><b>Beton2510:</b></font> <? kto_gra_wr(135361); ?><hr/>
<font color='orange'><b>Damianxxx:</b></font> <? kto_gra_wr(167678); ?><hr/>
<font color='orange'><b>Icebeastpl:</b></font> <? kto_gra_wr(340722); ?><hr/>
<font color='orange'><b>Hard00x:</b></font> <? kto_gra_wr(349769); ?><hr/>
<font color='orange'><b>Easykill:</b></font> <? kto_gra_wr(317336); ?><hr/>
<font color='orange'><b>Hedsz00t:</b></font> <? kto_gra_wr(326614); ?><hr/>
<font color='orange'><b>Snappl:</b></font> <? kto_gra_wr(186940); ?><hr/>
<font color='orange'><b>Kiszony:</b></font> <? kto_gra_wr(125796); ?><hr/>
<font color='orange'><b>o0pepsip0o:</b></font> <? kto_gra_wr(92478); ?><hr/>
<font color='orange'><b>Sadysta22:</b></font> <? kto_gra_wr(106802); ?><hr/>
<font color='orange'><b>Szatan87:</b></font> <? kto_gra_wr(232484); ?><hr/>
<font color='orange'><b>st0proc3nt:</b></font> <? kto_gra_wr(295931); ?>
|