Gossamer Forum
Home : Products : Gossamer Forum : Discussion :

Need a global for users' IP

Quote Reply
Need a global for users' IP
Hi,

Is there a global that I can use to print users' and guests' IP in the forum pages? Something like "Your IP is: <%IP%>"

Thank you! Smile

François

Last edited by:

Franco: Oct 2, 2002, 11:10 PM
Quote Reply
Re: [Franco] Need a global for users' IP In reply to
try this:
Code:
sub {
return $ENV{REMOTE_ADDR};
}

Ivan
-----
Iyengar Yoga Resources / GT Plugins
Quote Reply
Re: [yogi] Need a global for users' IP In reply to
Thanks Ivan! Smile