In php I use this to get IP address which returns correctly,
<?php
$ip = getenv('REMOTE_ADDR');
echo $ip;
?>
Now how do I go about replicating this in Classic ASP?
In php I use this to get IP address which returns correctly,
<?php
$ip = getenv('REMOTE_ADDR');
echo $ip;
?>
Now how do I go about replicating this in Classic ASP?