Index: /temp/test-xoops.ec-cube.net/html/modules/newbb/topic_list.php
===================================================================
--- /temp/test-xoops.ec-cube.net/html/modules/newbb/topic_list.php	(revision 1015)
+++ /temp/test-xoops.ec-cube.net/html/modules/newbb/topic_list.php	(revision 1015)
@@ -0,0 +1,24 @@
+<?php
+include '../../../mainfile.php';
+$xoopsOption['template_main'] = 'topic_list.html';
+include XOOPS_ROOT_PATH."/header.php";
+
+$sql = 'SELECT * FROM ' . $xoopsDB->prefix('bb_topics');
+print($sql);
+
+if ( !$result = $xoopsDB->query($sql) ) {
+    redirect_header(XOOPS_URL.'/',1,_MD_ERROROCCURED);
+    exit();
+}
+
+
+while ( $myrow = $xoopsDB->fetchArray($result) ) {
+	//echo mb_detect_encoding($myrow) . "<br>";
+//	$myrow = mb_convert_encoding($myrow["topic_title"], "euc-jp");
+	print($myrow);
+	print("<BR>");
+}
+
+// ÂÐ±þ¾õ¶·
+$xoopsTpl->assign('arrResponse', $arrResponse);
+?>
