Skip to content

Instantly share code, notes, and snippets.

@adrianthedev
Last active December 16, 2015 02:28
Show Gist options
  • Save adrianthedev/5362400 to your computer and use it in GitHub Desktop.
Save adrianthedev/5362400 to your computer and use it in GitHub Desktop.
if IP
<?php
$ip = $_SERVER['REMOTE_ADDR'];
$ips = array('');
if ( in_array($ip, $ips) ) {
echo "aici";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment