Hello
I want to send Array of html from one page to other using GET method. I am using following method.
<form name="recordsizeform" method="get">
<input type="hidden" name="jewelry_id" value="114">
<input type="hidden" name="material[]" value="Platinum">
<input type="hidden" name="material[]" value="Gold">
<select name="recsize" onChange="document.recordsizeform.submit()">
<option value="5" selected>5</option>
<option value="10" >10</option>
</select>
</form>
But "[]" get encoded like following .
gems_details.php?jewelry_id=114&material%5B%5D=Platinum&material%5B%5D=Gold&recsize=10
Anybody can help, So I will get URL like
gems_details.php?jewelry_id=114&material[]=Platinum&material[]=Gold&recsize=10
Regards,
Chaitanya Jakhadi.