i have a problem with a html form , the form likes this :
<h3 class="senddata"><span>send data</span></h3>
<ul>
<form method="POST" action="www.sample.com/Order.aspx?o=[submitted value by users]&e=p">
<div style="margin-bottom: 5px;">Your value : </div>
<div style="width: 100%;"><input name="code" size="20" value="14/" dir="ltr" style="background: none repeat scroll 0% 0% rgb(248, 247, 241); border: 1px solid rgb(223, 219, 208); width: 180px;" type="text"></div>
<div style="margin: 10px auto;"><input value="Send" name="B4" style="-moz-border-radius: 5px 5px 5px 5px; background: none repeat scroll 0% 0% rgb(255, 255, 255); border: 1px solid rgb(223, 219, 208); font: 1em/1.6 tahoma; height: 30px; color: rgb(204, 0, 0);" type="submit"></div>
</form>
</ul>
i want to know how its possible every query that users enter become instead of [submitted value by users] in url ?!
<h3 class="senddata"><span>send data</span></h3>
<ul>
<form method="POST" action="www.sample.com/Order.aspx?o=[submitted value by users]&e=p">
<div style="margin-bottom: 5px;">Your value : </div>
<div style="width: 100%;"><input name="code" size="20" value="14/" dir="ltr" style="background: none repeat scroll 0% 0% rgb(248, 247, 241); border: 1px solid rgb(223, 219, 208); width: 180px;" type="text"></div>
<div style="margin: 10px auto;"><input value="Send" name="B4" style="-moz-border-radius: 5px 5px 5px 5px; background: none repeat scroll 0% 0% rgb(255, 255, 255); border: 1px solid rgb(223, 219, 208); font: 1em/1.6 tahoma; height: 30px; color: rgb(204, 0, 0);" type="submit"></div>
</form>
</ul>
i want to know how its possible every query that users enter become instead of [submitted value by users] in url ?!