hello. i am a new learner. i build some program that able to read .doc file and pass them to Cache database. i've done the passing part. but the problem is, how can i diffrentiate between paragraph and table content?
for example, i have Section A as a title and a table inside the section.
currently, i just get the table content and send it as array to Cache Database. (ex. array(1,2))
but i want to include the element Section A in the array.
it might look like this:
array(1)="Section A"
array(2,1,1)="Name: "
array(2,1,2)="Terry"
array(2,2,1)="Age: "
array(3)="Section B"
.
.
.
i like to set an ID for each element.