Forum Moderators: DixonJones
http://www.example.com/microsites/example%20name/default.asp?MB_ID=2623&SE_ID=1&MSC_RefIP=64.88.XX.#*$!&MSC_RefURL=http://search.yahoo.com/search?p=example+phrase&fr=yfp-t-500&toggle=1&cop=&ei=UTF-8
[edited by: Receptional at 9:15 am (utc) on Oct. 10, 2006]
[edit reason] Lots of specifics - nearly enough to get your bank details! I Examplified the URL. [/edit]
On most servers the IP address is stored in the REMOTE_ADDR environment variable. This variable can be accessed using any server side scripting language, for instance to print an IP on a web page using PHP you could use
<?
echo $_SERVER['REMOTE_ADDR'];
?>
For a basic and small task as that IP address magic, the PHP approach would be the most easy one, as already mentioned by Receptional.
Kind regards,
R.