<?php
include ('include/config.php');
set_time_limit(120);
$strPlayerID=explode('/', $_SERVER['PATH_INFO']);
$strPlayerID=explode('.png', $strPlayerID[1]);
$strPlayerID=str_replace('_', ' ', $strPlayerID);
$charname=$strPlayerID[0];
foreach($gu as $value)
{
if ($value['name']==$charname)...