I need to be able to provide custom URL's from html forms with the data encoded in base64.
For example:
<form name="test" action="test.php" method="get">
<input type="text" name="category" />
<input type="text" name="gender" />
<input type="text" name="quantity" />
</form>
And get an URL:
test.php?Y2F0ZWdvcnk9c3BvcnRzJmdlbmRlcj1mZW1hbGUmcXVhbnRpdHk9NTA=
Thanks.