You need to encode your values with HTML-safe entities, thus the module HTML::Entities would do the trick:
use HTML::Entities; my $item_name = q{BGUS2-108 O.D Tube:5/8" MF Solder Connection:1/2"}; my $encoded_item_name = encode_entities($item_name);
Does this help?
----Asim, known to some as Woodrow.
In reply to Re: Double Quotes in form hidden field values
by Asim
in thread Double Quotes in form hidden field values
by pickledegg
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |