• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved http://http// - why ?

Try replacing:
PHP:
$url = url("guilds.php?name=". $guild['name']);
echo '<tr class="special" onclick="javascript:window.location.href=\'' . $url . '\'">';

With:
PHP:
$url = "guilds.php?name=". $guild['name'];
echo '<tr class="special" onclick="javascript:window.location.href=\'' . $url . '\'">';

Not even sure though xD I thought it was going to be a simple mistake such as <a href="http//~~~~> xd Oh well though!
 
Back
Top