[PHP] select multiple within for-each

2002-07-15 Thread William S.

This works OK with creating buttons but is not what I want.
POST/INPUT

xsl:for-each select=. . . 
xsl:sort/

form
xsl:attribute name=namemyform/xsl:attribute
xsl:attribute name=actionlist.php/xsl:attribute
xsl:attribute name=methodpost/xsl:attribute
input
xsl:attribute name=typesubmit/xsl:attribute
xsl:attribute name=nameinsert/xsl:attribute
xsl:attribute name=valuexsl:value-of 
select=.//xsl:attribute
/input
/form
/xsl:for-each

***This is what I would like to do but it does _not_ work and is wrong.***
POST/SELECT MULTIPLE

xsl:for-each select=. . . 
xsl:sort/

form
xsl:attribute name=namemyform/xsl:attribute
xsl:attribute name=actionlist.php/xsl:attribute
xsl:attribute name=methodpost/xsl:attribute
select
xsl:attribute name=multiple/xsl:attribute
xsl:attribute name=nameinsert/xsl:attribute
option
xsl:attribute name=valuexsl:value-of 
select=.//xsl:attribute
xsl:value-of select=./
/option
/select
/form
/xsl:for-each

So how do I get a select-multiple form to work this way?

-- 
Bill
Amsterdam, NL

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




Re: [PHP] select multiple within for-each (SOLVED)

2002-07-15 Thread William S.

Please disregard the previous posting I made. I figured it
out.

On Mon, Jul 15, 2002 at 10:52:23AM +0200, William S. wrote:
 This works OK with creating buttons but is not what I want.
 POST/INPUT
 
   xsl:for-each select=. . . 
   xsl:sort/
 
   form
   xsl:attribute name=namemyform/xsl:attribute
snip

-- 
Bill
Amsterdam, NL

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