Hi,
I am new to libxml group. I chose this because it is very popular one.Please
give us your support to complete my understanding of libxml2.

A .
*I would like to generate script something like below,*
*<**Option Value**=*"*00*">English</Option>
       * **<Option Value*="*01*">French</Option>

B.
But when i am doing like below,
node1 = xmlNewChild(node, NULL, BAD_CAST "Option", NULL);
node2 = xmlNewText(BAD_CAST "Value= 00[English]");
xmlAddChild(node1,node2);
xmlAddChild(node, node1);

I get like ,
  *<Option>**Value=* 00[English]</Option>
 *  <Option>**Value=* 01[French]</Option>

Is there a way to do like shown in A. Which API should i use to do so?

Please give me some idea.

Thanks,
Sam
_______________________________________________
xml mailing list, project page  http://xmlsoft.org/
[email protected]
http://mail.gnome.org/mailman/listinfo/xml

Reply via email to