โค้ดดึงกระทู้ มาหน้าแรก

ปรับแต่งแก้ไขโค้ด ปัญหาการติดตั้งและการใช้งาน Mod ต่างๆ เพิ่มเพิ่มความสามารถของ บอร์ด ไม่รู้จะใช้ Mod อะไร ดี ถามได้ที่นี่ ติดตั้ง Mod แล้วมีปัญหา มี Mod ดีๆ อย่าง share เพื่อนเชิญบอร์ดนี้

Moderator: phpbb, mindphp, ผู้ดูแลกระดาน

ตอบกลับโพส
sazukia007
phpBBThailand Super Hero Member
phpBBThailand Super Hero Member
โพสต์: 747
ลงทะเบียนเมื่อ: 19 ม.ค. 2009, 21:53

โค้ดดึงกระทู้ มาหน้าแรก

โพสต์ โดย sazukia007 »

โค้ดขอคุณมนตรีนั้นจะมีปัญหาในบางโฮสเพราะอัพเดต phpmyadmin คือจะเออเร้อ บรรทัดที่ 35 mysql_db_query

แก้แล้วก็ไม่หาย เลยไปหาโค้ดที่คล้ายๆ กันไปเจอกับ

http://www.hawkee.com/snippet/5344/" onclick="window.open(this.href);return false;

อธิบาย
$topicnumber = 5; จำนวนกระทู้ที่แสดง
$urlPath = "/cartoon"; พาร์ทของบอร์ด
$charset ="SET NAMES 'tis620'";mysql_query($charset); ภาษา ถ้าเป็นต่างดาว ก็ utf8
t.forum_id = 2 AND รหัสบอร์ดที่ต้องการดึงมา

โค้ด: เลือกทั้งหมด

<?php
    // How Many Topics you want to display?
    $topicnumber = 5;
    // Change this to your phpBB path
    $urlPath = "/cartoon";

 
    // Database Configuration (Where your phpBB config.php file is located)
    include 'config.php';
 
    $table_topics = $table_prefix. "topics";
    $table_forums = $table_prefix. "forums";
    $table_posts = $table_prefix. "posts";
    $table_users = $table_prefix. "users";
    $link = mysql_connect("$dbhost", "$dbuser", "$dbpasswd") or die("Could not connect");
    mysql_select_db("$dbname") or die("Could not select database");
 	$charset ="SET NAMES 'tis620'";mysql_query($charset);
 
    $query = "SELECT t.topic_id, t.topic_title, t.topic_last_post_id, t.forum_id, p.post_id, p.poster_id, p.post_time, u.user_id, u.username
    FROM $table_topics t, $table_forums f, $table_posts p, $table_users u
    WHERE t.topic_id = p.topic_id AND
    f.forum_id = t.forum_id AND
    t.forum_id = 2 AND
    t.topic_status <> 2 AND
    p.post_id = t.topic_last_post_id AND
    p.poster_id = u.user_id
    ORDER BY p.post_id DESC LIMIT $topicnumber";
    $result = mysql_query($query) or die("Query failed");									
 
    print "<table cellpadding='3' cellSpacing='2' width='640'>";
    while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
 
    echo  "<tr valign='top'><td><font face=\"Verdana, Arial, Helvetica, sans-serif\" size=\"1\"><font color=\"#FFCC00\"><b><a href=\"$urlPath/viewtopic.php?f=$row[forum_id]&t=$row[topic_id]&p=$row[post_id]#p$row[post_id]\" TARGET=\"_blank\">" .
    $row["topic_title"] .
    "</a></td></font></b><td><font face=\"Verdana, Arial, Helvetica, sans-serif\" size=\"1\"><font color=\"#C0C0C0\"> by: <a href=\"$urlPath/memberlist.php?mode=viewprofile&u=$row[user_id]\" TARGET=\"_blank\">" .
    $row["username"] .
    "</td><td><font face=\"Verdana, Arial, Helvetica, sans-serif\" size=\"1\"><font color=\"#C0C0C0\">" .
    date('F j, Y, g:i a', $row["post_time"]) .
    "</td></tr></font>";
    }
    print "</table>";
    mysql_free_result($result);
    mysql_close($link);
    ?>
Rungnaakum
phpBBThailand Newbie
phpBBThailand Newbie
โพสต์: 2
ลงทะเบียนเมื่อ: 15 ม.ค. 2015, 10:44

Re: โค้ดดึงกระทู้ มาหน้าแรก

โพสต์ โดย Rungnaakum »

ที่มาเป็นยังงี้หรอเนี่ยเพิ่งรู้นะคะ
isarapong
phpBBThailand Newbie
phpBBThailand Newbie
โพสต์: 5
ลงทะเบียนเมื่อ: 16 ก.พ. 2015, 10:06

Re: โค้ดดึงกระทู้ มาหน้าแรก

โพสต์ โดย isarapong »

พอจะมีรายละเอียดไหมครับ ว่าไปแก้ที่ไหน พอดีผมเป็นเด็กใหม่ แต่อยากใช้อันนี้มากเลยครับ กับงานที่ทำอยู่
ตอบกลับโพส

ย้อนกลับไปยัง

ผู้ใช้งานขณะนี้

กำลังดูบอร์ดนี้: 111 และ บุคคลทั่วไป 0 ท่าน