i got allways the same warning on my php page:
Warning: Missing argument 2 for server_online(), called in C:\xampp\htdocs\index.php on line 137 and defined in C:\xampp\htdocs\minecraftserver.inc.php on line 3
Warning: fsockopen(): unable to connect to 25565:0 (Failed to parse address "25565") in C:\xampp\htdocs\minecraft_server.inc.php on line 4
this is my minecraftserver.inc.php:
<?php function server_online($server, $port){ fsockopen($server, $port, $errno, $errstr); return ($errno === 0); } ?>heres my index.php:
<?php var_dump(server_online($servers[0][1])); ?>and my init.inc.php:
<?php $servers = array( array('server.no-ip.org', '25565'), ); $path = dirname(__FILE__); include("{$path}\minecraftserver.inc.php"); ?>can you halp me pls?
thank you,
Sl