I have a dropdown bow that you choose a item from when you choose the item
ie. say <SELECT> <option>The item 1 </SELECT>
I pass it to a url so it should read... http://www.domain.com/file.php?test=The Item 1
Well the problem is the it reads... http://www.domain.com/file.php?test=The
I lose everything after the white space.
TIA RICHIE TM
you have 3 options.
1) (suggested) use METHOD="post" in your FORM tag.
2) change the VALUE of your OPTION tags to a string without spaces.
3) encode the VALUE of your OPTION tags to the standard using rawurlencode($str) (or you can do it manually).
Ok Here the problem I see the the form use value str like this
ie.
The+Item+1
to be passed correctlly
Now knowing this how con I print this in the drop down box with out the + sign but send it with the + signs
TIA Richie TM
Ok I try your option three that work fine thanks