This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Vue.js CDN Test</title> | |
</head> | |
<body> | |
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script> | |
<div id="app-basic">{{ message }}</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>ivi example</title> | |
</head> | |
<body> | |
<script type="module"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Splits a large XML file with many elements into individual XML files per element using PHP and DOMDocument | |
* | |
* The script does the following: | |
* - Load original XML | |
* - Create template XML and remove elements | |
* - For each element of the original XML | |
* - Create a clone of the template XML | |
* - Add element of the original XML to the clone |
OlderNewer