Posted by Janwillem Borleffs on 12/27/05 17:00
shagy wrote:
> When I post the data I only get the first word (up to the white
> space). "Testing white space" becomes "Testing" after posting
>
> code...
>
> <select name="descr" id="descr">
> <option value=Testing white space>Testing white space</option>
> <option value=Testing white space two>Testing white space
> two</option> <option value=Testing white space th>Testing white
> space th</option> </select>
>
>
Either do:
<option value="Testing white space">Testing white space</option>
Or just:
<option>Testing white space</option>
JW
[Back to original message]
|