Hej Toke,
Hvis din host understøtter ASP, benyttes global.asa til at holde check på sessioner til serveren (aktive brugere). Denne kan du opsætte/kode sådan at der i databasen bliver opdateret et felt med antallet af aktive brugere. Dette kan du så hente og benytte i dine PHP sider.
Med venlig hilsen
Ieet
global.asa, uden indæt i databasen
<script language="VBScript" runat="Server">
Sub Application_OnStart
Application("nrusers") = 0
Application("maxusers") = 0
Application("maxusersdate") = now()
Session("test") = "Virker"
End Sub
Sub Application_OnEnd
End Sub
Sub Session_OnStart
dim i
i = Application("nrusers") + 1
Application.lock
Application("nrusers") = i
if i > Application("maxusers") then
Application("maxusers") = 1
Application("maxusersdate") = now()
end if
Application.unlock
Session("level") = "NA"
End Sub
Sub Session_OnEnd
dim i
i = Application("nrusers") - 1
Application.lock
Application("nrusers") = i
Application.unlock
End Sub
</script>