Hi Chris,

Nachricht vom Freitag, 24. Oktober 2003, 21:12:06:

> --- Timo Boettcher <[EMAIL PROTECTED]> wrote:
>> I am trying to get my pages through the w3c-validator for html.
>> It doesn't like my
>> <FORM action="mypage.php?para1=val1&para2=val2">
>> Changing & to &amp; got my page through the validator, but broke my
>> app, which seems not to be getting any parameters over URL
>> anymore.

> I find that *very* hard to believe. I'm not aware of any browser
> that mishandles HTML entities. Basically, when you say this:

> action="/mypage.php?para1=val1&amp;para2=val2"

> Your browser's HTTP request line will appear as:

> /mypage.php?para1=val1&para2=val2

That seems to be different here. With IE and opera, I get
"mypage.php?para1=val1&amp;para2=val2" as the page address.

> So, by the time PHP sees it, everything is the same either way. My guess is
> that you have some other problem.

> Hope that helps.

> Chris



 Timo

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to