$.ajax({
type: 'POST',
url: '/add.php',
data: msg,
success: function(data) {
console.log("Ответ json:",data);
console.log(data.w_client);
},
error: function(xhr, str){
alert('Возникла ошибка: ' + xhr.responseCode);
}
});