Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $xslDoc = new DOMDocument();
- $xslDoc->load('./users.xsl');
- $xmlDoc = new DOMDocument();
- $xmlDoc->load("http://192.168.1.200:8083/stat");
- $proc = new XSLTProcessor();
- $proc->importStylesheet($xslDoc);
- $proc->setParameter('', 'app', 'live');
- $proc->setParameter('', 'name', $_GET['name']);
- echo $proc->transformToXML($xmlDoc);
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement