⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
node_modules
/
xmldoc
/
examples
/
View File Name :
test.html
<!doctype html> <html lang="en"> <head> <title>xmldoc browser test</title> <script type="text/javascript" src="../node_modules/sax/lib/sax.js"></script> <script type="text/javascript" src="../lib/xmldoc.js"></script> <script type="text/javascript"> // Demonstrate parsing an in-memory XML string var xmlString = '<suggestions><book title="Twilight"/><book title="Twister"/></suggestions>' var suggestions = new XmlDocument(xmlString); // Demonstrate how toString() will pretty-print an abbreviated version of the XML for debugging console.log("Parsed: \n" + suggestions); // Demonstrate a simple eachChild() loop, printing our book titles suggestions.eachChild(function(book) { document.write("<p>Found book with title: '" + book.attr.title + "'</p>"); }); </script> </head> <body> </body> </html>