in reply to & url question
There are modules to escape stuff for you. For example, URI::Escape -- this example is basically straight from the man page:mycode.pl?param=first&second=name&details=items%26things&other=more<br +>
perl -MURI::Escape -le 'print uri_escape("10% is enough\n"); # 10%25%20is%20enough%0A
|
|---|