PHP expert |
|
<?
if(file_exists($map."/".$_SESSION['user']['id'].".gif"))
{
unlink($map."/".$_SESSION['user']['id'].".gif");
rename($map."".$naam, $map."/".$_SESSION['user']['id'].".gif");
}
else
{
rename($map."".$naam, $map."/".$_SESSION['user']['id'].".gif");
}
?>
<? if(file_exists($map."/".$_SESSION['user']['id'].".gif")) { unlink($map."/".$_SESSION['user']['id'].".gif"); rename($map."".$naam, $map."/".$_SESSION['user']['id'].".gif"); } else { rename($map."".$naam, $map."/".$_SESSION['user']['id'].".gif"); } ?>
Ik heb deze code, localhost doet hij het goed, maar online niet... Weet iemand waarom...
rename() bij die else doet hij wel
mvg stijn (cool zo'n oranje letters )
edit
Sorry, maar eens hard op F5 drukken helpt Case closed
|