Welcome to Egypt Forums Mark forums read | Egypt Main Page
Egypt Forums
Arabic Movies



Articles Thread, Last posts in your portal in vBulletin; Last posts in your portal This is the way to read the tables of your forum, and display it in ...

Short Link: http://forum.egypt.com/enforum/showthread.php?t=3309


Reply
LinkBack Thread Tools Display Modes
Last posts in your portal
 
 
The God Father
Developer's Avatar

Reply With Quote
 
Join Date: Jul 2008
Location: NDC
Posts: 5,425
08-09-2008, 07:32 PM
 

Last posts in your portal



This is the way to read the tables of your forum, and display it in your website:

<div style="margin: 5px 10px;"> <div class="smallfont" style="margin-bottom: 2px;">Code:
PHP Code:
    <?php
    
include ("includes/conn-forum.php"); // this is the path of the config of the forum (and also the mysql_connect for me) - if you don't have something of this, include the code that i will post below, or include the includes/config.php of the forum and after do the mysql_connect

    
$query = "SELECT pp.postid, pp.threadid, pp.userid, pp.dateline, pt.title, pf.title_clean, pf.forumid, pu.username
            FROM   post pp, thread pt, forum pf, user pu
            WHERE  pp.threadid = pt.threadid
            AND pu.userid = pp.userid
            AND pt.forumid = pf.forumid
            AND pp.postid = pt.lastpostid
            AND pf.forumid != '17'
            AND pf.forumid != '77'
            AND pf.forumid != '98'
            AND pf.forumid != '111'
            GROUP BY pp.threadid
            ORDER BY dateline DESC LIMIT 0,10"
;    // 10 --> this is the number of the post that you will show (now it's 10) ..change it to show more or less last posts  
    
$risultato = mysql_query($query);
    if (!
$risultato) {
        echo
"Failed in esecution ($sql) from DB: " . mysql_error();
        exit;
    }
    if (
mysql_num_rows($risultato) == 0) {
        echo
"Nothing found.";
        exit;
    }
    while (
$dati = mysql_fetch_assoc($risultato)) {
        if (
strlen($dati[title]) > 40) { $dati[title] = substr($dati[title], 0, 37)."..."; }
        echo
"<b><a href='http://www.yourforum.com/showthread.php?p=".$dati[postid]."#post".$dati[postid]."' rel="nofollow" target='_blank'>".$dati[title]."</a></b> (<a href='http://www.yourforum.com/forumdisplay.php?f=".$dati[forumid]."' rel="nofollow" target='_blank'>".$dati[title_clean]."</a>) of <a href='http://www.yourforum.com/member.php?u=".$dati[userid]."' rel="nofollow" target='_blank'><em>".$dati[username]."</em></a> on ".date("H:i d-m-y", $dati[dateline]);
    }
    
mysql_free_result($risultato);
?>
here you are Egypt.Com EnForum

for the connection, as i said above, you can use:
PHP Code:
     Code:     $_CONFIG['host'] = "localhost(orsomethingelse)";
$_CONFIG['user'] = "username";
$_CONFIG['pass'] = "password";
$_CONFIG['dbname'] = "database_name";

$connect = mysql_connect($_CONFIG['host'], $_CONFIG['user'], $_CONFIG['pass']) or die ('Impossibile to establishing a connection.');
mysql_select_db($_CONFIG['dbname']);
enjoy Egypt.Com EnForum
__________________
I Love Walking In The Rain Cuz Nobody Know I'm Crying !!
 
 
 
Reply

Articles Thread, Last posts in your portal in vBulletin; Last posts in your portal This is the way to read the tables of your forum, and display it in ...

Short Link: http://forum.egypt.com/enforum/showthread.php?t=3309


Bookmarks

Tags
portal, posts


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Zoints LOCAL 2.0 - Enhanced profiles, social portal, networking, blogging, and more Developer Mods for 3.7.x 3 02-05-2009 03:47 AM
portal templates # 1 Developer Web Application 5 15-04-2009 09:36 AM
MRCO-Egypt develops first online booking Nile Cruises portal Developer News 0 02-12-2008 09:12 PM
portal templates Developer Web Application 0 01-11-2008 10:20 PM
Make your forum post live CMS portal Developer Mods for 3.7.x 0 13-09-2008 01:39 AM