Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.97 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2. if(count($_GET) > 0)
  3. {
  4. $xmlstr = "<npcspawn>
  5.         <npcId>{$_GET['npcId']}</npcId>
  6.         <locationz>
  7.                 <x>{$_GET['x']}</x>
  8.                 <y>{$_GET['y']}</y>
  9.                 <z>{$_GET['z']}</z>
  10.         </locationz>
  11.         <respawnTime>{$_GET['respawnTime']}</respawnTime>
  12.         <walkTime>{$_GET['walkTime']}</walkTime>
  13.         <comment>{$_GET['comment']}</comment>
  14. </npcspawn>";
  15.         echo '<pre>'.htmlentities($xmlstr).'</pre><hr />';
  16. }
  17. ?>
  18. <form method="get">
  19. <table>
  20. <tr><td>NPC ID:</td><td><input type="text" name="npcId"></td></tr>
  21. <tr><td>X:</td><td><input type="text" name="x" size="3"></td></tr>
  22. <tr><td>Y:</td><td><input type="text" name="y" size="3"></td></tr>
  23. <tr><td>Z:</td><td><input type="text" name="z" size="3"></td></tr>
  24. <tr><td>Respawn Time:</td><td><input type="text" name="respawnTime" size="3"></td></tr>
  25. <tr><td>Walk Time:</td><td><input type="text" name="walkTime" size="3"></td></tr>
  26. <tr><td>Comment:</td><td><input type="text" name="comment"></td></tr>
  27. <tr><td colspan="2"><input type="submit" value="Get XML!"></td></tr>
  28. </form>