|
Posted by Onideus Mad Hatter on 12/19/07 22:20
On Mon, 17 Dec 2007 21:01:40 GMT, Ron Eggler <NOREPLY@example.com>
wrote:
>Ron Eggler wrote:
>
>> Michael Fesser wrote:
>>
>>> .oO(Ron Eggler)
>>>
>>>>But how can I recognize if someone just closed the Window?
>>>
>>> You can't. The session just times-out.
>>>
>>>>Isd this any usable? How would you recommend me going on this?
>>>>What I want: I wanna see which user looks for how long on my page without
>>>>closing the window -?
>>>
>>> Impossible. All you can get is the time between the first and the last
>>> request made to your site. What happens after the last request is out of
>>> your control. You can't tell whether the visitor is still reading your
>>> page for an hour or if he's away already.
>>>
>>>>how long the session is active. If the window is
>>>>closed now, no out time is being recorded... :(
>>>
>>> That's simply how HTTP works. Remember: It's a stateless protocol. Every
>>> single request is completely independent from each other:
>>>
>>> * user sends request
>>> * server answers request
>>> * user is gone
>>>
>>> That's it, no more no less. Session are just a way to _partly_ overcome
>>> this issue.
>>>
>> Michael,
>>
>> Thanks for your response and right - I can record how long a user is
>> looking at my page by Javascript. Now I'm thinking if i can call a php
>> script every e.g. second that would update the information in a mysql
>> table... but do i actually need to display the "dummy php"page in a frame
>> even tho there's no html output or can i just call it"hidden" in the
>> backkground somehow?
>>
>> Thanks,
>> Ron
>I got an idea: I'll load my content into one frame (the content where i
>wannas know the session time). And in the other frame (null frame) i load a
>script that's writing data passed by GET into a db. The time is measured by
>javascript in the content file and every minute i call my null frame php,
>passing the time over in the url.
>That should work fine.
>*building it now* :)
....don't do that.
Just call the script like an image file using javascript, that's what
I do. Like nyah:
: A = "<img src='blah.php?screen_width=";
: B = screen.width
: C = "&screen_height=";
: D = screen.height
: E = "&color_depth=";
: F = screen.colorDepth
: G = "&os=";
: H = OS
: I = "&browser=";
: J = browser
: K = "&version=";
: L = version
: M = "&cookies=";
: N = cookies
: O = "&java=";
: P = java
: Q = "&flash=";
: R = flash
: S = "&flashversion=";
: T = flashversion
: U = "&time=";
: V = time
: W = "&ref=";
: X = document.referrer
: Y = "&raw=";
: Z = raw
: AA = "'>";
:
: document.write(A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + S + T + U + V + W + X + Y + Z + AA);
That way you don't need to bother using frames or multiple pages of
any sort.
--
Onideus Mad Hatter
mhm ¹ x ¹
http://www.backwater-productions.net
http://www.backwater-productions.net/hatter-blog
Hatter Quotes
-------------
"You're only one of the best if you're striving to become one of the
best."
"I didn't make reality, Sunshine, I just verbally bitch slapped you
with it."
"I'm not a professional, I'm an artist."
"Your Usenet blinders are my best friend."
"Usenet Filters - Learn to shut yourself the fuck up!"
"Drugs killed Jesus you know...oh wait, no, that was the Jews, my
bad."
"There are clingy things in the grass...burrs 'n such...mmmm..."
"The more I learn the more I'm killing my idols."
"Is it wrong to incur and then use the hate ridden, vengeful stupidity
of complete strangers in random Usenet froups to further my art?"
"Freedom is only a concept, like race it's merely a social construct
that doesn't really exist outside of your ability to convince others
of its relevancy."
"Next time slow up a lil, then maybe you won't jump the gun and start
creamin yer panties before it's time to pop the champagne proper."
"Reality is directly proportionate to how creative you are."
"People are pretty fucking high on themselves if they think that
they're just born with a soul. *snicker*...yeah, like they're just
givin em out for free."
"Quible, quible said the Hare. Quite a lot of quibling...everywhere.
So the Hare took a long stare and decided at best, to leave the rest,
to their merry little mess."
"There's a difference between 'bad' and 'so earth shatteringly
horrible it makes the angels scream in terror as they violently rip
their heads off, their blood spraying into the faces of a thousand
sweet innocent horrified children, who will forever have the terrible
images burned into their tiny little minds'."
"How sad that you're such a poor judge of style that you can't even
properly gauge the artistic worth of your own efforts."
"Those who record history are those who control history."
"I am the living embodiment of hell itself in all its tormentive rage,
endless suffering, unfathomable pain and unending horror...but you
don't get sent to me...I come for you."
"Ideally in a fight I'd want a BGM-109A with a W80 250 kiloton
tactical thermonuclear fusion based war head."
"Tell me, would you describe yourself more as a process or a
function?"
"Apparently this group has got the market cornered on stupid.
Intelligence is down 137 points across the board and the forecast
indicates an increase in Webtv users."
"Is my .sig delimiter broken? Really? You're sure? Awww,
gee...that's too bad...for YOU!" `, )
Navigation:
[Reply to this message]
|