Displaying users IP on secure pages is it possible?
Recently noticed the script which displays the users IP in PHP below...
<? echo("Your IP:".$_SERVER["REMOTE_ADDR"]." has been logged."); ?>
produces the unsecure items on page msg in my store.
Is there a workaround for this?
Should it be displayed at all on secure pages?
|