greetings.
Your no [1] question describes exactly the problem I have...and
I thought session_is_registered() would do the job...(but I was wrong)
...
Now my solution looks like this:
session_register("session_uID");
if (isset($session_uID)) {
do something;
}
else {
session_destroy(); //
This is not working?
echo("$server->server_num_players."/".$server->server_max_players
");
If you are trying to print out
4/4
but can't because it is evaluating it mathematically, try using the HTML
character entity for /, /
echo("$server->server_num_players/$server->server_max_players");
Hop
2 matches
Mail list logo