<?
if (!$oyunresmi and !$oyundosyasi) {
echo "Hata";
}
else {
if($_FILES['oyunresmi']['tmp_name']) {
copy($_FILES['oyunresmi']['tmp_name'], "/resimler/".$_FILES['oyunresmi']['name']);
echo "oyun resmi yüklendi.";
}else{
echo "oyun resmi yüklenemedi.";
}

}

?>








if içinde if olarak

<?
if ($oyunresmi and $oyundosyasi) {
if($_FILES['oyunresmi']['tmp_name']) {
copy($_FILES['oyunresmi']['tmp_name'], "/resimler/".$_FILES['oyunresmi']['name']);
echo "oyun resmi yüklendi.";
}else{
echo "oyun resmi yüklenemedi.";
}
else {
echo "hata";
}

?>