* Thus wrote Eugene Lee ([EMAIL PROTECTED]):
> Something I've noticed in PHP is a proliferation of code like this:
> 
>       <input name="stuff[title]" value="" type="text" size="40">
> 
> According to the specs, the square brackets in "stuff[title]" are
> technically illegal.
> 
>       http://www.w3.org/TR/html4/types.html#h-6.2

Yes, this is correct.  The way to properly do it would be to set
set your name as:

<input name="stuff%5Btitle%5D" value="" type="text" size="40">


Curt
-- 
"I used to think I was indecisive, but now I'm not so sure."

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

Reply via email to