Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i want to create dynamic elements with php dom. means, i have several value for an ID in my database, so for each of it i want to create an element and add it to its parent.

for better understanding,

table1
1- a
2- b
3- b

<categoies> 
<label1>a</label1> 
<label2>b</label2> 
<label3>c</label3> </categories>

i can do manually, but because labels might occur hundred times, i have to get it done by a for loop or alike..

thank you in advance..

share|improve this question
What is your question? – George Cummins Feb 15 '12 at 15:45
Well, i guess there is no question at all.. – teutara Feb 15 '12 at 16:57

1 Answer

up vote 0 down vote accepted

Well, No one knows when the solution appear for a given problem (or i am kidding myself?)

I did

//create parent element
$par=$domDocument ....
while($row=mysql_fetch_array(sql))

{ //create child element }

sorry for any inconvenience

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.