Answers for "php show only to this ip"

PHP
1

php only my ip

$myIp = '';
if ($_SERVER['REMOTE_ADDR'] == $myIp) {
	//do something
}
Posted by: Guest on October-02-2020

Browse Popular Code Answers by Language