Answers for "php get mac address"

PHP
3

php get current domain

// Warning: This can be manipulated by hackers!
// If this is problematic, store the domain in a config file

$currentDomain = $_SERVER['SERVER_NAME'];
Posted by: Guest on January-22-2020
0

phph get server protocol

$protocol = stripos($_SERVER['SERVER_PROTOCOL'],'https') === 0 ? 'https://' : 'http://';
Posted by: Guest on November-27-2020

Browse Popular Code Answers by Language