Hmmm... I hadn't thought of that, but that still would limit the IP address to one user. As far as I know the remote host and remote IP would registar only with the server not the individual user, but it still is a very useful idea and I have to think if I can use it.
Can you think of anything that a browser would pass (besides the ip address) that would be unique to a individual computer system (not the server). I thought about something like using the browser configuation (i.e. $_SERVER['HTTP_USER_AGENT']), but that really won't work that well... just imagine if a 2 (or more) users have the same browser config. under that IP address.
So I guess I could do something like:
$_SERVER['HTTP_USER_AGENT'] .'@'. $_SERVER['REMOTE_HOST']
...or something like that to identify each user.
Thanks for that idea, examancer... you just narrowed down the problem, I think. Now if I can only identify each unique system in a network... I am good to go.
Nathan