merhaba arkadaşlar iki resim alanım var birini ekleyince diğer resim kayboluyor yani boş veri güncelliyor ikisine bir resim eklersem sorun yok;

bu problemi nasıl çözerim



image.php

[PHPR]








































if (strlen($imagecek['image1'])>0) {?>




































if (strlen($imagecek['image2'])>0) {?>











































[/PHPR]

islem.php

[PHPR]

if (isset($_POST['imagekaydet'])) {





if (!empty($_FILES['image1'])) {

$uploads_dir1 = 'images/';



$tmp_name1 = $_FILES['image1']["tmp_name"];

$name1 = $_FILES['image1']["name"];

$refimgyol1=substr($uploads_dir1, 6)."images/".$name1;

move_uploaded_file($tmp_name1, "$uploads_dir1/$name1");



$image1kaydet=$db->prepare("UPDATE image SET

image_adi=:image_adi,

image1=:image1

WHERE image_id=1");

$update=$image1kaydet->execute(array(

'image_adi' => $_POST['image_adi'],

'image1' => $refimgyol1

));

}

if ($update) {



Header("Location:../production/image.php?durum=ok");



} else {



Header("Location:../production/image.php?durum=no");

}



if (!empty($_FILES['image2'])) {

$uploads_dir2 = 'images/';



$tmp_name2 = $_FILES['image2']["tmp_name"];

$name2 = $_FILES['image2']["name"];

$refimgyol2=substr($uploads_dir2, 6)."images/".$name2;

move_uploaded_file($tmp_name2, "$uploads_dir2/$name2");



$image2kaydet=$db->prepare("UPDATE image SET

image_adi=:image_adi,

image2=:image2

WHERE image_id=1");

$update=$image2kaydet->execute(array(

'image_adi' => $_POST['image_adi'],

'image2' => $refimgyol2

));

}



if ($update) {



Header("Location:../production/image.php?durum=ok");



} else {



Header("Location:../production/image.php?durum=no");

}



}

[/PHPR]