You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 rivejä
596 B

  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. ?>