$sql = "UPDATE cvs SET `email` = ?, `fname`=?, `education`=?, `from`=?, `to`=?, `experience`=? WHERE cv_id = ?";
$data = array_values($data);
$stmt = $this->db->prepare($sql);
$stmt->execute($data);
So, is it safety? I have array and bind all values through execute. I'm using PDO.
Is it real binding or have to use special function like php prepared statements with an array