I'm trying to compress the GET query of a url by using a character map to decode the url on the server side. Currently when I submit a form the url becomes like below:
http://localhost:8080/seminars?0=&1=&2=&3=&4=&5=&6=&7=&8=&9=&a=&b=&c=&d=&e=&f=&g=&h=&i=&j=&k=&l=&m=&n=&o=&p=&q=&r=&s=&t=&u=&v=
A part of html that corresponds to this looks like below:
<form id="filterForm" action="localhost:8080/seminars" method="GET"></form>
<input form="filterForm" type="checkbox" name="a" value="">some text
<input form="filterForm" type="checkbox" name="0" value="">some text
<input form="filterForm" type="checkbox" name="5" value="">some text
This produces the unnecessary "=" that can be removed. The query part should look like: ?0&1&2&3&4
Is it possible?