Yardım!

0 Cevap php

Bunun yerine benim phpbb3 forum ben bunun yerine SQLite 2 veritabanı içinde veri erişim yardıma ihtiyacım SQLite 2, normal bir "sonra el phpbb3 tarafından doldurulan bir notepad.txt dosyadan oluşturulan database.db dosyayı kullanır" mySQL kullanarak, hızlı bir yardıma ihtiyacım var MySQL.

when I run this Script I get echo: Recent Posts (located on line3) but nothing else

Ben PHP yüzden Plz Yardım ile tam bir çaylak değilim, ben Luck hiç şimdi 1 hafta boyunca ona olmuştur

Sonuçta benim web phpBB3 dışında html desteği ile Adobe Flash Dinamik txt kutusunda 15 en son mesajları görüntüleme istiyorum

enter code here
  <?php
  $db = sqlite_open("Mydatabasenamehere.db", 0666, $sqliteerror);
  echo "Recent Posts<p />";
  $recent = sqlite_query($db, "SELECT * FROM * phpbb_posts ORDER BY post_time DESC LIMIT 15");
  while ($recent_row = sqlite_fetch_all($recent, SQLITE_ASSOC))
  {

// get data
$post_id = $recent_row['post_id'];
$topic_id = $recent_row['topic_id'];
$forum_id = $recent_row['forum_id'];    
$poster_id = $recent_row['poster_id'];
$post_time = $recent_row['post_time'];

// get topic name
$topic_name = sqlite_query($db, "SELECT topic_title FROM phpbb_topics WHERE topic_id='$topic_id'");
$topic_name = sqlite_fetch_all($topic_name);
$topic_name = $topic_name('topic_title');

// get username 
$username = sqlite_query($db, "SELECT username FROM phpbb_users WHERE user_id='$poster_id'");
$username = sqlite_fetch_all($username);
$username = $username['username'];

//var for flash
//$toflash = "<b><a href='http://microfusion.mine.nu/forums/memberlist.php?mode=viewprofile&u=$poster_id'></a>$username</b> Posted in \"<a href='http://microfusion.mine.nu/forums/viewtopic.php?$forum_id1&t=$topic_id&p=post_id#p$post_id'>$topic_name\"</a><br />";
//echo "RecPos.$toflash";

    //to test first before flash integration
echo "$username Posted in $topic_name<br />";

    }

    ?>

0 Cevap