Hi. I have login.html and echo $(link-orig-esc) on this page but show as http%3A%2F%2Fwww.google.com%2F
How i can show as http:\www.google.com\ ?
Thanks
Hi. I have login.html and echo $(link-orig-esc) on this page but show as http%3A%2F%2Fwww.google.com%2F
How i can show as http:\www.google.com\ ?
Thanks
https://wiki.mikrotik.com/wiki/Manual:Customizing_Hotspot
You have (link-orig)
Thanks.
For other solution can use Javasript…
<body>
<strong id="url">$(link-orig-esc)</strong>
<script>
var res = decodeURIComponent("$(link-orig-esc)");
document.getElementById("url").innerHTML = res;
</script>
</body>