jQuery HTML formu, seçilen dosya PHP $ _POST mevcut değildir

0 Cevap php

i bir bağlantı tıklama ile jQuery'nin. html bir dosya için yeni bir ekler bir form var ()

    // show div to change image on product_edit.php
    $("#change_img").click(
        function () {
            $("#change_img_div").html('<label>Image product</label><input type="file" value="" name="item_img" id="item_img"/>').fadeIn('fast');
            $(this).fadeOut('fast');

        }
    )

When I choose a file and I submit this name "item_img" is not present in the php $_POST array, if I put type="text" instead the new input is passed to POST.

Bu ilk etapta eğer html yoksa bir "dosya" türü tanınmadı gibi temelde görünüyor?

0 Cevap