解析PDO语句创建的JSON对象

Here is my problem

I looked through Stak overflow and other websites but can't find an answer that solves my actual problem...

I call a php file from an AJAX request, my php file gets data from my db.

I'm making a pdo statement to get data from my db :

//initialize vars such as $db ...
$get = $db->prepare("SELECT * FROM myTable WHERE myTable_id=1");
$get->execute();
echo json_encode($get->fetchAll(PDO::FETCH_ASSOC));

//COLUMNS IN MY TABLE ARE ID, NAME, PHONE, INFO

so that object is returned to my ajax query BUT I don't know how to fetch this object into my ajax/jquery statement to use its data...

Response from console :

[Object{id="1",name="myname",phone="8888888",info="information"}]

code...

success : function(response){
    var id = '';
    var name = '';
    var phone = '';
    var info = '';
}

please tell me how to parse, i tried json.parse(response), but can't display any data from this...

thanx

Do it like this

success : function(response){
  var data = JSON.parse(response);
  var id = data.id;
  var name = data.name;
  var phone = data.phone;
  var info = data.info;
}

That should do the trick.