SYNOPSISint xmlWriterStartAttribute(xmlWriter writer, string name
[, string prefix [, string URI]])
Parameters:
writer - the xmlWritername - the name of the attributeprefix (optional) - the XML namespace prefix for
the attributeURI (optional) - the URI for the namespace
Returns:
DESCRIPTIONxmlWriterStartAttribute() starts writing a new attribute to
writer. If this will be a simple 'start attribute-write content-end
attribute' sequence, you can do it with one call to
xmlWriterWriteAttribute() instead.
EXAMPLE<$ret = (xmlWriterStartAttribute($writer, 'price'))>
SEE ALSOxmlWriterWrite,
xmlWriterEndAttribute,
xmlWriterWriteAttribute,