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
you can get this like any other config value
and then
or just
or just (as pointed by MagePsycho in comments)