PHP Upload Formu "Notice: Undefined index: upload"

0 Cevap php

Google ve stackoverflow çevresinde arandı, ama oldukça doğru cevap bulamadık.

Bir formu kullanarak im. Bu form içinde ben basit bir yükleyicisi

<form method="post" action="uploadImage.php" enctype="multipart/form-data">
   <input name="upload" id="upload" type="file" />
   <input name="add" type="submit" id="add" value="add">
</form>

Şimdi, benim uploadImage.php dosyasında, ben aşağıda yazdım

print "<pre>";
print_r($_FILES['upload']);
print "</pre>";

when i upload a image with filesize about below 1.5MB, an array with info of that file is returned. But when i upload a file with about 2MB size, i get 1 error, and no filesize. when i upload a 8MB file i get this error, Notice: Undefined index: upload in C:\Program Files........\uploadImage.php on line 2

Ben sorun yükleme sınırlamaları ile ilgili bir şey olduğunu düşünüyorum, soru ben bu nasıl düzeltebilirim nedir?

0 Cevap