Quote Originally Posted by STAUFFi View Post
make


Code:
<?php 
$filename = "server.cfg"; // Read Server Data
$fp = fsockopen("udp://ip/".$filename, "14000", $errno, $errstr, 10); // Connected and streamed ip & port
 
$contents = fread($fp, filesize($filename));
fclose ($fp);
?>
All that does is get the server.cfg if it's located in the directory root?