Skip to content

Instantly share code, notes, and snippets.

@nielsenrc
Last active January 4, 2016 11:58
Show Gist options
  • Save nielsenrc/8a217ab8255b072ba010 to your computer and use it in GitHub Desktop.
Save nielsenrc/8a217ab8255b072ba010 to your computer and use it in GitHub Desktop.
PHP | Show Content Only to My IP
<?php
$ip = $_SERVER['REMOTE_ADDR'];
if ($ip == "[ip]"):
//do things
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment