wawi
Visitor
|
order client in room - 2009/03/27 18:41
How I can order the clients as they go entering to the server? For Sample: In room “Lobby” enter client “client_jhon1” Later: In room “Lobby” enter client “client_danniele2” Later: In room “Lobby” enter client “client_emily3” Later: In room “Lobby” enter client “client_robert4”
I like to see(look) the order Hereby:
| Code: | <clients>
<client name=”client_jhon1” room=”Lobby” />
<client name=”client_danniele2” room=”Lobby” />
<client name=”client_emily3” room=”Lobby” />
<client name=”client_robert4” room=”Lobby” />
</clients>
|
Or:
| Code: | <clients>
<client name=”client_obert4” room=”Lobby” />
<client name=”client_emily3” room=”Lobby” />
<client name=”client_danniele2” room=”Lobby” />
<client name=”client_jhon1” room=”Lobby” />
</clients>
|
But palabre order Hereby:
| Code: | <clients>
<client name=”client_emily3” room=”Lobby” />
<client name=”client_danniele2” room=”Lobby” />
<client name=”client_robert4” room=”Lobby” />
<client name=”client_jhon1” room=”Lobby” />
</clients>
|
Help me , how I can solution this problem?
Teank you!
|