Answers for "Get the current page address"

PHP
1

Get the current page address

$actual_link = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
Posted by: Guest on December-02-2020

Code answers related to "Get the current page address"

Browse Popular Code Answers by Language