if(!$comment_product){
$res = array('answer' => 'Неизвестный продукт!');
return json_encode($res);
}
// если не заполнены поля
if(empty($comment_author) OR empty($comment_text)){
$res = array('answer' => 'Все поля обязательны к запалнению');
return json_encode($res);
}