i have a form like this:
<form method="get" action="sample.php">
<input type="text" name="url">
<input type="submit" value="send">
</form>
when i sumbit form with an url(like https://google.com) my link is:
site.com/sample.php?url=https%3A%2F%2Fgoogle.com
but i want send Formed url like this (without https://):
site.com/sample.php?url=google.com
how i can do this?