Index: temp/test-xoops.ec-cube.net/html/test/kakinaka/topic_list.php
===================================================================
--- temp/test-xoops.ec-cube.net/html/test/kakinaka/topic_list.php	(revision 1035)
+++ temp/test-xoops.ec-cube.net/html/test/kakinaka/topic_list.php	(revision 1036)
@@ -10,10 +10,16 @@
 }
 
-
 while ( $myrow = $xoopsDB->fetchArray($result) ) {
-	//echo mb_detect_encoding($myrow) . "<br>";
+	
+	foreach($myrow as $key => $val){
+		$val = mb_convert_encoding($val, "euc-jp");
+		print($val);
+	}
+	print("<BR>");
+/*
 	$myrow = mb_convert_encoding($myrow["topic_title"], "euc-jp");
 	print($myrow);
 	print("<BR>");
+*/
 }
 
