I have a vBulletin Forum which I would like to display users IP addresses. I have created a php page with <?php echo $_SERVER['REMOTE_ADDR']; ?> Code (markup): When I access the php page directly is shows my IP address, which is what I want, but now I need to make it show on my site in the header, how can I make it show the IP in the header? Thanks
Hey there, You should follow this a bit: vbulletin.com/docs/html/templates_externalfiles Pretty much, make a plugin that says $userip = $_SERVER['REMOTE_ADDR']; then you can just put $userip in the header template Thanks, Francisco
You are a legand, thanks so much for that, it worked like a charm. I wanted it because my forum members are mostly people working in IT and I thought it would be handy to have their IP address displayed. You can click on my signature link if you want to see how it turned out.