Re: Cannot validate dynamic html with W3C because of missing Character Encoding

2002-10-05 Thread Todd Wade
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: >

Re:

2002-10-05 Thread Kevin Meltzer
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

beginners-cgi@perl.org

2002-10-05 Thread Vincent van Kuler
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]

Re: URL decode

2002-10-05 Thread Kevin Meltzer
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

URL decode

2002-10-05 Thread Kevin
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]