您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122
  1. <?php
  2. include "../header.php";
  3. $boss_type=$_POST['boss_type'];
  4. $boss_suffix=$_POST['boss_suffix'];
  5. $boss_name=$boss_type;
  6. copy("../medias/default/enemy.xml", "../medias/".$hash."/enemy/".$boss_name.".xml");
  7. $xml = simplexml_load_file('../medias/'.$hash.'/enemy/'.$boss_name.'.xml');
  8. $xml->entry->nom = $boss_name;
  9. $xml->entry->img = "http://wiki.ecomonde.land/lib/exe/fetch.php?media=wiki:".$boss_type.".jpg";
  10. $xml->entry->url = "http://wiki.ecomonde.land/doku.php?id=wiki:boss:".$boss_type;
  11. $xml->asXml('../medias/'.$hash.'/enemy/'.$boss_name.'.xml');
  12. header("location: index.php");
  13. ?>