how to echo the url code example
Example 1: get actual url in variable
var currentLocation = window.location;
Example 2: get page url php
$actual_link = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";