Advertisement

07.09.2008 at 11:44AM PDT, ID: 23551329
[x]
Attachment Details

Display posts, last poster and time from phpBB on website

Asked by xjdx in phpBB, PHP for Windows

Tags: PHP, mySQL, phpBB, http://www.therover25.co.uk/index.php

I currently have the latest forum posts displaying on the left hand side, second box down here:
http://www.therover25.co.uk/index.php

I would like to display the last poster, and when it was posted, like it is in the forum for example:

by johnView the latest post
on Wed Jul 09, 2008 6:39 pm

The forum can be found at:

http://www.therover25.co.uk/forum

Attatched is the code which I'm using to display the forum posts.Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
<div class="topheader"><h2>recent forum threads</h2></div>
<div class="borderbox">
<?php
 
mysql_connect("localhost", "therover", "redapple");
mysql_select_db("therover");
 
$select = mysql_query("SELECT * FROM `phpbb_topics` ORDER BY `topic_id` DESC LIMIT 0,10");
 
while($row = mysql_fetch_array($select)) {
echo '<ul id="sidelinksforum">';
	echo '<li><a href="/forum/viewtopic.php?f='.$row['forum_id'].'&t='.$row['topic_id'].'">'.$row['topic_title'].'</a></li>';
echo '</ul>';
}
 
?>
</div>
[+][-]07.09.2008 at 06:01PM PDT, ID: 21969659

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.09.2008 at 06:41PM PDT, ID: 21969786

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: phpBB, PHP for Windows
Tags: PHP, mySQL, phpBB, http://www.therover25.co.uk/index.php
Sign Up Now!
Solution Provided By: compfixer101
Participating Experts: 1
Solution Grade: B
 
 
[+][-]07.10.2008 at 12:34PM PDT, ID: 21976663

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628