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'];
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'];
php get domain name from url
parse_url('http://www.website.com/hey.php', PHP_URL_HOST);
php get domain from url
$url = 'http://google.com/dhasjkdas/sadsdds/sdda/sdads.html';
$parse = parse_url($url);
echo $parse['host']; // prints 'google.com'
php get current url host
<?php
if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on')
$url = "https://";
else
$url = "http://";
// Append the host(domain name, ip) to the URL.
$url.= $_SERVER['HTTP_HOST'];
// Append the requested resource location to the URL
$url.= $_SERVER['REQUEST_URI'];
echo $url;
?>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us