Hello, I didn't notice this until translating it, so it's a bit late, but...
On Sun, 2003-08-17 at 21:09, Derick Rethans wrote: > derick Sun Aug 17 15:09:25 2003 EDT > > Modified files: > /phpdoc/en/faq html.xml > Log: > - Pretty up examples > > > Index: phpdoc/en/faq/html.xml > diff -u phpdoc/en/faq/html.xml:1.21 phpdoc/en/faq/html.xml:1.22 > --- phpdoc/en/faq/html.xml:1.21 Tue Apr 8 23:22:19 2003 > +++ phpdoc/en/faq/html.xml Sun Aug 17 15:09:25 2003 [ snip ] > @@ -233,7 +233,7 @@ > are all passed with the same widget name. ie. > <programlisting role="html"> > <![CDATA[ > -<select name="var" multiple> > +<select name="var" multiple="yes"> I think the attribute should be "multiple". As you can see in the HTML specification [ http://www.w3.org/TR/REC-html40/interact/forms.html#edef-SELECT ], the only valid attribute is 'multiple'. X(HT)ML doesn't change this, you just need to specify it. > ]]> > </programlisting> > Each selected option will arrive at the action handler as: > @@ -248,7 +248,7 @@ > should be used: > <programlisting role="html"> > <![CDATA[ > -<select name="var[]" multiple> > +<select name="var[]" multiple="yes"> Same here. > ]]> > </programlisting> > This tells PHP to treat <varname>$var</varname> as an array and Greetings, Jan Fabry