Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > altering form GET value

Reply
Thread Tools

altering form GET value

 
 
Onur Baser
Guest
Posts: n/a
 
      12-23-2004

Hi,
I am trying to send a three different option and combine them under
....?keywords=155+70+13 with form get method.
However, each time I use GET it became like this ...?keywords=155&b=70&c=13
Is there a script that will alter the form GET URL as soon as the submit
button pressed and remove &b and &c with +
Thank You,
OnuR

<form name="form1" method="get"
action="http://xxxxxxxxxxx/advanced_search_result.php?">
<select name="keywords">
<option>155</option>
<option selected>165</option>
<option>175</option>

</select>
<select name="b">
<option selected>80</option>
<option>70</option>
<option>65</option>
</select>
R
<select id="c">
<option selected>13</option>
<option>14</option>
<option>15</option>
</select>
<input type="Submit" value=">">
</form>


 
Reply With Quote
 
 
 
 
Hywel Jenkins
Guest
Posts: n/a
 
      12-23-2004
In article <3eDyd.8785$EL5.7965@trndny09>,
says...
>
> Hi,
> I am trying to send a three different option and combine them under
> ...?keywords=155+70+13 with form get method.
> However, each time I use GET it became like this ...?keywords=155&b=70&c=13
> Is there a script that will alter the form GET URL as soon as the submit
> button pressed and remove &b and &c with +
> Thank You,
> OnuR


Do it properly and have your server-side script sort it out.

--
Hywel http://kibo.org.uk/
I do not eat quiche.
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to retrieve form field value if form is EncType=multipart/form-dataForm? Li Zhang ASP .Net 4 02-27-2009 01:23 AM
Server altering name of form fields CJM ASP .Net 9 09-25-2008 09:31 AM
Does altering a private member decouple the property's value? Ethan Kennerly Python 8 06-20-2007 12:37 PM
Loop Form - extract display 'value' as well as form value? ASP General 2 02-20-2006 09:36 PM
Altering a Bi-Directional Data Line Daragoth VHDL 4 06-30-2004 09:12 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57