Jump to content
xisto Community
Sign in to follow this  
Jesse

Php Code Fix Required URGENT

Recommended Posts

I am running a Web Chat and need to get this to display the User IP to them, but this code isnt working.


<PARAM NAME="welcomemessage" VALUE="<?php echo  $_SERVER['REMOTE_SERVER'];" has been logged. Chat powered by GCN">

Any help would be extremly grateful. Thank you

Notice from mayank:
Inserted the code in CODES tag

Edited by mayank (see edit history)

Share this post


Link to post
Share on other sites

Yes, you need to use $_SERVER['REMOTE_ADDR'] instead, and you forgot the ending ?> at the end. Your actual code should be:

<PARAM NAME="welcomemessage" VALUE="<?php echo $_SERVER['REMOTE_ADDR']; ?> has been logged. Chat powered by GCN">
That should give you what you're looking for (I hope, anyway). You also had an extra quote in that right after the semicolon (which I corrected in the code).

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.