好吧,所以我是一個非常初學者在製作網站,我只知道hmtl和ccs編碼到目前爲止。我有一個網站(interqueo.hu)和一個phpBB論壇。在我的網站上,我想在右側有一個地方,參觀者可以在論壇上看到最新的5個帖子。我找到了一個教程,但正如我所說我是一個初學者,並不熟悉php編碼。顯示文章在網站上(phpBB)
鏈接教程:https://wiki.phpbb.com/Practical.Displaying_posts_and_topics_on_external_pages
我這樣做,到目前爲止,但我不知道在哪裏把代碼的其餘部分從教程。
<!DOCTYPE>
<?php
/*
* home.php
* Description: example file for displaying latest posts and topics
* by battye (for phpBB.com MOD Team)
* September 29, 2009
*/
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './forum/';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
include($phpbb_root_path . 'includes/bbcode.' . $phpEx);
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup('viewforum');
<html>
<head>
<title>Test Page</title>
</head>
<body>
</body>
</html>
即使這是一個很好的建議,你也沒有回答這個問題。嘗試獲得最低的聲譽,以便您可以發表評論。 –