'; echo "\n"; echo ''; echo "\n"; echo ' '; echo "\n"; echo ' SRB2 Master Server RSS Feed'; echo "\n"; echo ' Playing around with RSS'; echo "\n"; echo ' http://srb2.servegame.org/'; echo "\n"; echo ' en-us'; echo "\n"; $fd = fsockopen("srb2.servegame.org", 28900, $errno, $errstr, 5); if ($fd) { $buff = "000012380000"; fwrite($fd, $buff); while (1) { $content=fgets($fd, 13); // skip the next 13 bytes $content=fgets($fd, 1024); echo "$content"; if (feof($fd)) break; } fclose($fd); } else { echo "No master serverThe master server is not running"; } ?>