SO Benim ilk soru, teşekkürler. :)
I'm developing a support issue logging system for my company and it must allow for files to be uploaded aswell as any problems submitted to our database. There could be from 0-6 different uploads to check, along with a support issue. I've managed to get an accurate variable of how many files there is through having a hidden input field (imgcount) that updates via js whenever an image is selected through a type="file" input, or removed from the form.
I içlerinden döngü bu şekilde daha kolay olacağını düşünmüştüm olarak benim [input type = "file"] adları image1, image2, vb vardır.
Form gönderildiğinde aşağıdaki kod onlar geçerli tipi (gif / jpeg / png) ait konum, herhangi bir dosya ve çekler var olmadığını görmek için bir görünüm alır, bu yüzden güvenle yüklenebilir. Destek sistemi güzel bir güvenli oturum açma var gibi virüsler konusunda çok endişeli değilim ve biz müşterilerimize güven.
$sscount = $_POST['imgcount'];
echo $sscount; //to test the variable
if($sscount>0){
for($i = 1; $i <= $sscount; $i++){
if (($_FILES["image$i"]["type"] == "image/gif")
|| ($_FILES["image$i"]["type"] == "image/jpeg")
|| ($_FILES["image$i"]["type"] == "image/png" )
&& ($_FILES["image$i"]["size"] < 500000))
{
}
else
{
$errormsg .= "Error: Image $i must be either JPEG, GIF, or PNG and less than 500 kb.<br />";
}
}
}
Ama bu kimse ben döngü almak ve doğru dönebilir nasıl herhangi bir fikir var, doğru döngü olarak görünmüyor?