if(isset($_GET['hash_file'])){
$hash = $_GET['hash_file'];
json_encode(array('test' => 'test'));
}
Вот так я получаю данные в php файле
Вот так я их отправляю:
$.ajax({
url: './index.php/',
type: 'GET',
data: {hash_file : file},
dataType: 'text',
success: function (data){
alert(data.test);
}
});
Мне выводится undefined, get запрос отправляется, смотрел в фаербаге, ошибок.