Thank you for both responses tho I found the solution to my problem using PHP and desired.
Thought I'd share in case if anyone was wondering how to do it in PHP with out using an addon or if you work for someone and you don't have access to the analytics account.PHP Code:<?php
$ip_address = $ip=$_SERVER['REMOTE_ADDR'];
while($ip_address != 'my_ip_address_here')
{
include 'googleanalytics.php';
break;
}
?>


Reply With Quote
