This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: Outputting literal and 'quoted' tags.



Emiliano,

Instead of writing

<input type="checkbox" name="{@id}" value="yes"<?php if ($value == 'yes')
{ echo " checked"; } ?>>

try this

<input type="checkbox" value="yes">
<xsl:attribute name="name"><xsl:value-of select="@id"/></xsl:attribute>
...
</input>

As for being a tyro (a beginner, more appropriate than the derogatory
'newbie'), I believe people don't get agitated by the question per se, but
with the informality and presumption of phrases like "I would expect". The
level of expectation should be set by specifications, documentation, and
books, not a gut feel. We occasionally like to pretend that we are engaged
in computer _science_. ;-) I appreciate the question (and the questions
behind the question) so I can understand where people have difficulties
learning the language. Good luck in your efforts.

Cheers,
Stuart, stuart@ferncrk.com, www.ferncrk.com


-----Original Message-----
[...] but I don't see how else I would achieve the wanted result of there
being

<input type="checkbox" name="{@id}" value="yes"<?php if ($value == 'yes')
{ echo " checked"; } ?>>

in the output (with {@id} replaced by its value of course). [...]


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]