hi,
i have this xml:


<?xml version="1.0" encoding="ISO-8859-1" ?>
- <link4>
<nome>Tove</nome>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
<nome>sdsd</nome>
<id>116</id>
</link4>

and i want simple append more elements "nome" and id inside
of link4 how can i do that i using php 4
thanks a lot for your help
:)

Member Avatar for diafol

Any chance of you ungrading to php5? You can then use SimpleXML functions.
Otherwise, you've got a few ways to go.
The simplest is probably:
1. Read the xml file into a string using fopen() and fread().
2. Then replace the substring '</link4>' with your inserted string and '</link4>' using substr_replace().
3. Write the new xml string back to the file (overwrite) using fwrite().

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.