I want to get comment of answers:
Actually First i made a Query :
$var = qa_db_query_sub(
'SELECT title, parentid, postid, content FROM ^posts WHERE type=$', 'C '
);
And After taking String data one by one in second variable (var2) using function qa_db_read_one_assoc()
and After this i tried this to get HTML Address of comment:
qa_q_path_html($var2['parentid'], $var2['title'],1,'C',$var2['postid']) //line 3
This generating wrong HTML address.
Can you please tell me where i am wrong in line 3.