PHP Classes » Classes » Cod4 Server: Need help

New Topic Reply
Cod4 Server: Need help - Mon March 14, 2011 10:49pm
{T_QUOTE} {T_MOVE} {T_EDIT} {T_DELETE} {T_LOCK}

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
{T_QUOTE} {T_EDIT} {T_DELETE}

foreach($serverStatus['_Maps'] as $map){

    echo $map.'<br />';

}

 
Founder of LangCMS

RE: Cod4 Server: Need help - Mon April 11, 2011 2:41pm
{T_QUOTE} {T_EDIT} {T_DELETE}

Thank you!