i can't call q_list_item, don't know why.
tried:
require_once QA_INCLUDE_DIR.'qa-theme-base.php';
and
require_once QA_BASE_DIR.'qa-include/qa-theme-base.php';
the script is:
<?php
define('QA_BASE_DIR', './');
require_once QA_BASE_DIR.'qa-include/qa-base.php';
require_once QA_BASE_DIR.'qa-include/qa-app-users.php';
require_once QA_BASE_DIR.'qa-include/qa-db.php';
require_once QA_BASE_DIR.'qa-include/qa-theme-base.php';
qa_base_db_connect(null);
require_once QA_INCLUDE_DIR.'qa-db-selects.php';
$postid=163;
$post=qa_db_single_select(qa_db_full_post_selectspec(null,$postid));
echo $post['title'];
$answers = (int)$post['acount'];
echo $answers;
q_list_item($post);
?>
thanks.