I can post only image and get it with $_FILES['foto']['name']. I need post image and text same time.
        var fotoFile = new FormData();
        $('#foto').on('change', function (evt) {
            var files = evt.target.files;
            if (files.length > 0) {
                fotoFile.append("foto", files[0]);
            }
        });
It is post code
`                $.ajax({
                    url: 'postpages/personelsave.php', 
                    dataType: 'text',
                    type: 'post',
                    cache: false,
                    contentType: false,
                    processData: false,
                    data: {foto : fotoFile, tc_no : document.getElementById('tcNo').value},                         
                    success: function(php_script_response){
                        alert(php_script_response);
                    }
                });`
and personelsave.php
$_FILES['foto']['type']
$_POST["tc_no"]
Error : undefined index foto.
What is wrong with it?
 
     
    