How to use a php function inside jquery

How to use a php function inside jquery

Hello, 
I'm writing a comment system and i encountered a problem which is, after fetching users comments from db, I used jquery to display the comment, which I have a php function inside the jquery to help me fetch users username but is not working, please I need help.

Here is my code 
  1.                 $.post("getcomment.php",
  2.  function listComment() {
  3.                         function (data) {
  4.                                var data = JSON.parse(data);
  5.                             
  6.                             var comments = "";
  7.                             var replies = "";
  8.                             var item = "";
  9.                             var parent = -1;
  10.                             var results = new Array();

  11.                             var list = $("<span>");
  12.                             var item = $("<li>").html(comments);

  13.                             for (var i = 0; (i < data.length); i++)
  14.                             {
  15.                                 var commentId = data[i]['comment_id'];
  16.                                 parent = data[i]['prt_id'];
  17. var members_ids = data[i]['members_id'];

  18.                                 if (parent == "0")
  19.                                 {
  20.                                     
  21. comments =  "<li class='comment' id='li-comment-1'>"+
  22.   "<div id='comment-1' class='comment-wrap clearfix'>"+
  23. "<div class='comment-meta'>"+
  24.   "<div class='comment-author'> <img src='' > </div>"+
  25. "</div>"+
  26. "<div class='comment-content clearfix'>"+
  27.   "<div class='comment-author'><?php  getmembersUserName(members_ids); ?></div>"+
  28.   "<div class='comment-date'><a href='#'>" + data[i]['date'] + "</a> </div>"+
  29.   "<div class='comment-reply'><a class=' btn btn-small' onClick='postReply(" + commentId + ")'><i class='fa fa-reply append-icon'></i>Reply</a></div>"+
  30.   "<div class='comment-arrow'></div>"+
  31.   "<p class='comment-word'>" + data[i]['comment'] + "</p>"+
  32. "</div>"+
  33. "<div class='clear'></div>"+
  34. "<div>"+
  35.   "</li>";
  36.                                     var item = $("<li>").html(comments);
  37.                                     list.append(item);
  38.                                     var reply_list = $("<ul>");
  39.                                     item.append(reply_list);
  40.                                     listReplies(commentId, data, reply_list);
  41.                                 }
  42.                             }
  43.                             $("#output").html(list);
  44.                   
  

highlighted code is my php function which I want to use and fetch users username using the jquery var, but I don't know how go about it