🐘 PHP How to merge 2 xml links/epg using php?

Status
Not open for further replies.

Minecraftgamer

Forum Guru
please tell me the code
cause I tried many codes from online but failed
I'm kinda new for coding php.
Ang preferred output should be the 2 xml converted into 1 xml link via php.
 
patingin nga ng code . yung screenshot mismo
1631027160042.webp
 
Sana man lang ganto ohh
1.XML
Code:
<res>
    <items total="180">
        <item>
            <id>1</id>
            <title>Title 1</title>
            <author>Author 1</author>
        </item>
        ...
    </items>
</res>

2.xml:
Code:
<res>
    <items total="123">
        <item>
            <id>190</id>
            <title>Title 190</title>
            <author>Author 190</author>
        </item>
        ...
    </items>
</res>

MERGE.XML
Code:
<res>
    <items total="303">
        <item>
            <id>1</id>
            <title>Title 1</title>
            <author>Author 1</author>
        </item>
        ...  //items from 1.xml
        <item>
            <id>190</id>
            <title>Title 190</title>
            <author>Author 190</author>
        </item>
        ... //items from 2.xml
    </items>
</res>
 
Status
Not open for further replies.

About this Thread

  • 14
    Replies
  • 1K
    Views
  • 6
    Participants
Last reply from:
PHC_Jayvee

Trending Topics

Online now

Members online
1,060
Guests online
1,425
Total visitors
2,485

Forum statistics

Threads
2,274,223
Posts
28,954,405
Members
1,234,152
Latest member
Holysterbob08
Back
Top