sub FindOnline{
dbmopen(%li,"$htmlpath/login",0644);
my $time = time;
$li{$cookie{'CHATUSER'}} = $time;
foreach $i (keys %li){
$mt = $time - $li{$i};
($mt < ($refresh * 2))?((push(@occ,$i))&&($uo++))($uol=1)&&(delete($li{$i})));
}
dbmclose %li;
&cuol;
$in{'inroom'} = join(" | ",@occ);
}
ok sorta defined
I get it to print out this way
<p align="left"><font color="white"><b>In Room:</b> in(inroom)</td>
it works fine til say there's like 20 people in room and it
starts misshaping banner so is there a way I can put these in a drop down box? I have tried for two days I know its probably simple html but I can not from it to work
dbmopen(%li,"$htmlpath/login",0644);
my $time = time;
$li{$cookie{'CHATUSER'}} = $time;
foreach $i (keys %li){
$mt = $time - $li{$i};
($mt < ($refresh * 2))?((push(@occ,$i))&&($uo++))($uol=1)&&(delete($li{$i})));
}
dbmclose %li;
&cuol;
$in{'inroom'} = join(" | ",@occ);
}
ok sorta defined
I get it to print out this way
<p align="left"><font color="white"><b>In Room:</b> in(inroom)</td>
it works fine til say there's like 20 people in room and it
starts misshaping banner so is there a way I can put these in a drop down box? I have tried for two days I know its probably simple html but I can not from it to work