resimal fonksiyonunu aşağıdaki ile değiştirip deneyin bakayım.
function resimal($baglanti, $game)
{
$nereye = "/wp-content/uploads/";
$game = basename($baglanti, '?' . $_SERVER['QUERY_STRING']);
$nereye = $_SERVER[DOCUMENT_ROOT] . $nereye;
$olustur = $nereye . $game;
$veri = get_data($baglanti);
$dosya = fopen($olustur, 'w+');
$ayar_yaz = ('' . $veri . '');
fwrite($dosya, $olustur);
fclose($dosya);
}