in reply to How to use cgi param() to read unescaped url parameters

My problem is that i send an email with this link : http://bhmk.com/cgi-bin/testcgiparm.pl?file=test;foo=2848 When i open the mail at thunderbird it works, when i open the mail at hotmail (chrome) it makes it http://bhmk.com/cgi-bin/testcgiparm.pl?file=test%3bfoo=2848 and then it doesn't work !!
  • Comment on Re: How to use cgi param() to read unescaped url parameters

Replies are listed 'Best First'.
Re^2: How to use cgi param() to read unescaped url parameters
by Your Mother (Archbishop) on Nov 01, 2013 at 16:36 UTC

    Seriously? Even after a decade of IE 6 it’s hard to believe MSFT is that incompetent / shows such poor judgement… If it's true and it's not Thunderbird overcompensating then probably all you can do is move from ; to &. They are equivalent in the spec though I prefer semi-colons because they are four characters shorter when typing HTML -> ; vs & (proper spelling of & in HTML).