PHP Classes » Classes » Cod4 Server: Need help
Cod4 Server: Need help - Mon March 14, 2011 10:49pm
Hi!
My problem is: I wanna write the name of the map with:
Map: <? echo $serverStatus['_Maps']; ?>
output: Map: Array
how can i write the real name of the map???
plz help me!!!
greetz CleaN
RE: Cod4 Server: Need help - Sun April 10, 2011 9:05pm
foreach($serverStatus['_Maps'] as $map){
echo $map.'<br />';
}
Founder of LangCMS
RE: Cod4 Server: Need help - Mon April 11, 2011 2:41pm
Thank you!
