I am trying to see if url encoding of get parameters while submitting a form is possible. I have seen a few resources where url encoding is being is used where the URLs are built dynamically
ex: www.google.com?query=urlencode($query)
But how do I apply the function url encode if I am using a form and a submit button.
<html>
<body>
<form action="send.php" method="get">
<input type="input" name="method" value="" />
<input type="submit" name="submit" value="submit"/>
</form>
</body>
</html>