<?php require_once __DIR__ . '/../inc/header.php'; require_once __DIR__ . '/../inc/classes/guild.php'; $guild = new Guild(); $name = $_GET['name']; $world = $_GET['world']; if (!$guild->LoadByName($name, $world, CURRENT_LOCALE)) { ?> <center> <img src="//<?php echo $domain; ?> /inc/img/no-character.gif" /> <img src="//<?php echo $domain; ?> /inc/img/no-character.gif" /> <img src="//<?php echo $domain; ?> /inc/img/no-character.gif" /> <p>Guild '<?php echo $name; ?> ' not found! The guild you are looking for was eaten by Horntail.</p> </center> <?php require_once __DIR__ . '/../inc/footer.php'; die; }