I use this code to have a js popup on each side telling visitors that the shop is not productive:
<?php
$ip = $_SERVER['REMOTE_ADDR'];
if ($ip == 'xxx.xxx.xxx.xxx' OR $ip == 'xxx.xxx.xxx.xx') { ?>
You are a developer
<?php } else { ?>
You are a visitor
<?php } ?>
My question is, how can I use the developer Ip from the magento backend in this code ->System -> Configuration -> Developer -> Developer Client Restrictions
dev/restrict/allow_ipssomewhere in the frontend to have different output for developers than normal users. – Jürgen Thelen Jun 1 '11 at 11:08