Todd Wade wrote:
> Richard wrote:
>
>> Hello
>>
>> I wrote a script that creates dynamic html. I validated the resulting
>> html code with W3C and it couldn't validate it because it didn't detect
>> the character encoding. I added the meta information to the header with
>> the -meta argument:
>
Read the docs for CGI.pm
perldoc CGI
Cheers,
Kevin
On Sat, Oct 05, 2002 at 07:33:33PM +0200, Vincent van Kuler ([EMAIL PROTECTED]) said
something similar to:
> How can I get the selected items from a
>
> Example:
>
>
>
> Selected
> Component_1
> Component_3
> Compo
How can I get the selected items from a
Example:
Selected
Component_1
Component_3
Component_4
Vincent
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
URI::Escape can do this for you.
# perl -MURI::Escape -e 'print \
uri_unescape("%D7%91%D7%A8%D7%99%D7%AA")' > esc.txt
The contents of esc.txt:
\xd7\x91\xd7\xa8\xd7\x99\xd7\xaa
Do what you need to with the output.
Cheers,
Kevin
On Sat, Oct 05, 2002 at 08:25:31AM -0700, Kevin ([EMAIL PROTECTED
Hello,
I need to progrmatically decode the following UTF-8 data via CGI:
q=%D7%91%D7%A8%D7%99%D7%AA
Can this be done?
-Kevin
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]