<?php
$data = array('response' => array ());
$data["response"] = array ( 
    "error" => "Invalid Service",
    "error_description" => "This service is not found"
);
header("Content-type: application/json; charset=utf-8");
echo json_encode($data);
?>