สอบถามเรื่อง การนำข้อมูลจากฐานข้อมูลมาบน Joomla

คือสร้าง module แล้วแต่เมื่อนำมาแสดงผลมันไม่ขึ้นเลยครับ
[img]http://image.ohozaa.com/t/gc1/Yrhfsu.jpg[/img]

code ส่วนใหญ่ดูจากเว็บอื่นนำมาดัดแปลงเอาครับ พึ่งเริ่มหัดทำ ร้องไห้

ไฟล์ php

<?php
    defined('_JEXEC') or die('Direct Access to this location is not allowed');
    $db = JFactory::getDBO();
    $query = "
    SELECT *
    FROM ".$db->nameQuote('#__record_notebook').";";
    
    $db->setQuery($query);
    $data = $db->loadresult();
    $db->query();
    $user_id = $db->insertid();
    $rows = $db->loadObjectList();
    print_r($row);
?>



ไฟล์ xml

<?xml version="1.0" encoding="utf-8"?>
<extension type="module" version="1.7.0" clinet="site" method="install">

   <name>Hello World!</name>
   <!-- The following elements are optional and free of formatting constraints -->
   <creationDate>November 2009</creationDate>
   <author>John Doe</author>
   <authorEmail>john.doe@example.org</authorEmail>
   <authorUrl>http://www.example.org</authorUrl>
   <copyright>Copyright Info</copyright>
   <license>License Info</license>
      <version>1.0</version>
      <description>Description of the Hello World component ...</description>
<files>
    <filename module="mod_testmodule">mod_testmodule.php</filename>
    <filename>index.html</filename>
    <filename>mod_testmodule.xml</filename>
</files>
</extension>



ปล.ขอบคุณล่วงหน้าครับ
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่