[xml] xmlAPI to add Attribute



  Hi,
I am new to libxml group. I chose this because it is very popular one.

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








[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]