April 27 2024 02:40:12
Navigation
· Home
· Articles
· Downloads
· FAQ
· Discussion Forum
· News Categories
· Contact Me
· Search
Demos
· Glossary
Users Online
· Guests Online: 1

· Members Online: 0

· Total Members: 1,892
· Newest Member: skalsted
Last Seen Users
· muscapaul 1 week
· Unforgiven12 weeks
· Wheeler15 weeks
· batbaru120 weeks
· MM102 weeks
· Zippo123 weeks
· hyperkolyok125 weeks
· Wivern178 weeks
· Sinders298 weeks
· Froberg341 weeks
Support sites
Fusion Sites
PHP-Fusion
View Thread
 Print Thread
posts posted last 24 hour (today)
axel
Help me..

Download source  Code
<?php
require_once "../../maincore.php";
require_once BASEDIR."subheader.php";
require_once BASEDIR."side_left.php";

if (!iMEMBER) fallback("../../index.php");


$time =time() - 86400;
$i=0;



opentable($locale['028']);
echo "<table cellpadding='0' cellspacing='1' width='100%' class='tbl-border'>\n<tr>\n";
echo "
<td align='center' width='1%' class='tbl2' style='white-space:nowrap'><span class='small'> </span></td>
<td width=45% class='tbl2'><span class='small'><b>".$locale['030']."</b></span></td>
<td width=55% class='tbl2'><span class='small'><b>".$locale['035']."</b></span></td>
<td align='center' width='1%' class='tbl2' style='white-space:nowrap'><span class='small'><b>".$locale['032']."</b></span></td>
<td align='center' width='1%' class='tbl2' style='white-space:nowrap'><span class='small'><b>".$locale['033']."</b></span></td>
<td align='center' width='1%' class='tbl2' style='white-space:nowrap'><span class='small'><b>".$locale['034']."</b></span></td>
</tr>\n";




$res = mysql_query("SELECT MAX(post_id) FROM ".$db_prefix."posts")or die(mysql_error());
$max_post_id = mysql_fetch_row($res);

for($post_id=$max_post_id[0]; $post_id>=0;$post_id=$post_id-1)
{

$query = "SELECT * FROM ".$db_prefix."posts WHERE post_id=$post_id";
$result1 = mysql_query( $query );
if( $result1 && $contact = mysql_fetch_object( $result1 ) )

{
$post_id = $contact -> post_id;
$post_subject = $contact -> post_subject;
$post_datestamp = $contact -> post_datestamp;
$thread_id = $contact -> thread_id;
}



$query = "SELECT * FROM ".$db_prefix."threads WHERE thread_id=$thread_id";
$result = mysql_query( $query );
if( $result && $contact = mysql_fetch_object( $result ) )
{




$forum_id = $contact -> forum_id;
$thread_id = $contact -> thread_id;
$thread_subject = $contact -> thread_subject;
$thread_author = $contact -> thread_author;
$thread_views = $contact -> thread_views;
$thread_lastpost = $contact -> thread_lastpost;
$thread_lastuser = $contact -> thread_lastuser;
$thread_locked = $contact -> thread_locked;

}

$query = "SELECT * FROM ".$db_prefix."forums WHERE forum_id=$forum_id";
$result2 = mysql_query( $query );
if( $result2 && $contact = mysql_fetch_object( $result2 ) )
{


$forum_name = $contact -> forum_name;
$forum_lastpost = $contact -> forum_lastpost;

}

$query = "SELECT * FROM ".$db_prefix."users WHERE user_id=$thread_lastuser";
$result3 = mysql_query( $query );
if( $result3 && $contact = mysql_fetch_object( $result3 ) )
{


$user_name = $contact -> user_name;
$user_id = $contact -> user_id;

}

if($thread_lastpost>=$time && $thread_lastpost==$post_datestamp)
{

if ($i % 2 == 0) { $row_color = "tbl1"; } else { $row_color = "tbl2"; }
$reply_count = dbcount("(thread_id)", "posts", "thread_id='".$thread_id."'");
$rstart = ($reply_count > 20 ? "rowstart=".((ceil($reply_count / 20)-1)*20)."&" : "");

$new_posts = dbcount("(post_id)", "posts", "thread_id='".$thread_id."' and post_datestamp>'$lastvisited'");

if ($thread_locked) {
echo "<tr>\n<td class='$row_color' align='center' width='25' class='tbl2'><img src='".THEME."forum/folderlock.gif' alt='".$locale['564']."'></td>";
} else {
if ($new_posts > 0 && $reply_count - 1 < 20) {
$folder = "<img src='".THEME."forum/foldernew.gif' alt='".$locale['560']."'>";
} else if ($new_posts > 0 && $reply_count - 1 >= 20) {
$folder = "<img src='".THEME."forum/folderhot.gif' alt='".$locale['562']."'>";
} else if ($reply_count - 1 > 20){
$folder = "<img src='".THEME."forum/folderhotold.gif' alt='".$locale['562']."'>";
} else {
$folder = "<img src='".THEME."forum/folder.gif' alt='".$locale['561']."'>";
}
echo "<tr>\n<td class='$row_color' align='center' width='25' class='tbl2'>$folder</td>";
}

echo"
<td class='$row_color'><span class='small'>".trimlink($forum_name, 30)."</span></td>
<td class='$row_color'><span class='small'><a href='".FORUM."viewthread.php?".$rstart."forum_id=".$forum_id."&thread_id=".$thread_id."#post_".$post_id."' title='".$post_subject."'>".trimlink($post_subject, 40)."</a></span></td>
<td align='center' width='1%' class='$row_color' style='white-space:nowrap'><span class='small'>".$thread_views."</span></td>
<td align='center' width='1%' class='$row_color' style='white-space:nowrap'><span class='small'>".($reply_count - 1)."</span></td>
<td align='center' width='1%' class='$row_color' style='white-space:nowrap'><span class='small'><a href='".BASEDIR."profile.php?lookup=".$thread_lastuser."'>".$user_name."</a></span></td>
</tr>\n";
$i++;
}
}


echo "</table>\n";
closetable();

require_once BASEDIR."side_right.php";
require_once BASEDIR."footer.php";
?>


 
muscapaul
Download source  Code
<?php
require_once "../../maincore.php";
require_once BASEDIR."subheader.php";
require_once BASEDIR."side_left.php";

if (!iMEMBER) fallback("../../index.php");


$time =time() - 86400;
$i=0;



opentable($locale['028']);
echo "<table cellpadding='0' cellspacing='1' width='100%' class='tbl-border'>\n<tr>\n";
echo "
<td align='center' width='1%' class='tbl2' style='white-space:nowrap'><span class='small'> </span></td>
<td width=45% class='tbl2'><span class='small'><b>".$locale['030']."</b></span></td>
<td width=55% class='tbl2'><span class='small'><b>".$locale['035']."</b></span></td>
<td align='center' width='1%' class='tbl2' style='white-space:nowrap'><span class='small'><b>".$locale['032']."</b></span></td>
<td align='center' width='1%' class='tbl2' style='white-space:nowrap'><span class='small'><b>".$locale['033']."</b></span></td>
<td align='center' width='1%' class='tbl2' style='white-space:nowrap'><span class='small'><b>".$locale['034']."</b></span></td>
</tr>\n";




$max_post_id = dbresult(dbquery("SELECT MAX(post_id) FROM ".$db_prefix."posts"),0);
$min_post_id = dbresult(dbquery("SELECT MIN(post_id) FROM ".$db_prefix."posts WHERE post_datestamp >= '".$time."'"),0);

for($post_id=$max_post_id; $post_id >= $min_post_id; $post_id=$post_id-1)
{

$query = "SELECT * FROM ".$db_prefix."posts WHERE post_id=$post_id";
$result1 = mysql_query( $query );
if( $result1 && $contact = mysql_fetch_object( $result1 ) )

{
$post_id = $contact -> post_id;
$post_subject = $contact -> post_subject;
$post_datestamp = $contact -> post_datestamp;
$thread_id = $contact -> thread_id;
}



$query = "SELECT * FROM ".$db_prefix."threads WHERE thread_id=$thread_id";
$result = mysql_query( $query );
if( $result && $contact = mysql_fetch_object( $result ) )
{




$forum_id = $contact -> forum_id;
$thread_id = $contact -> thread_id;
$thread_subject = $contact -> thread_subject;
$thread_author = $contact -> thread_author;
$thread_views = $contact -> thread_views;
$thread_lastpost = $contact -> thread_lastpost;
$thread_lastuser = $contact -> thread_lastuser;
$thread_locked = $contact -> thread_locked;

}

$query = "SELECT * FROM ".$db_prefix."forums WHERE forum_id=$forum_id";
$result2 = mysql_query( $query );
if( $result2 && $contact = mysql_fetch_object( $result2 ) )
{


$forum_name = $contact -> forum_name;
$forum_lastpost = $contact -> forum_lastpost;

}

$query = "SELECT * FROM ".$db_prefix."users WHERE user_id=$thread_lastuser";
$result3 = mysql_query( $query );
if( $result3 && $contact = mysql_fetch_object( $result3 ) )
{


$user_name = $contact -> user_name;
$user_id = $contact -> user_id;

}

if($thread_lastpost>=$time && $thread_lastpost==$post_datestamp)
{

if ($i % 2 == 0) { $row_color = "tbl1"; } else { $row_color = "tbl2"; }
$reply_count = dbcount("(thread_id)", "posts", "thread_id='".$thread_id."'");
$rstart = ($reply_count > 20 ? "rowstart=".((ceil($reply_count / 20)-1)*20)."&" : "");

$new_posts = dbcount("(post_id)", "posts", "thread_id='".$thread_id."' and post_datestamp>'$lastvisited'");

if ($thread_locked) {
echo "<tr>\n<td class='$row_color' align='center' width='25' class='tbl2'><img src='".THEME."forum/folderlock.gif' alt='".$locale['564']."'></td>";
} else {
if ($new_posts > 0 && $reply_count - 1 < 20) {
$folder = "<img src='".THEME."forum/foldernew.gif' alt='".$locale['560']."'>";
} else if ($new_posts > 0 && $reply_count - 1 >= 20) {
$folder = "<img src='".THEME."forum/folderhot.gif' alt='".$locale['562']."'>";
} else if ($reply_count - 1 > 20){
$folder = "<img src='".THEME."forum/folderhotold.gif' alt='".$locale['562']."'>";
} else {
$folder = "<img src='".THEME."forum/folder.gif' alt='".$locale['561']."'>";
}
echo "<tr>\n<td class='$row_color' align='center' width='25' class='tbl2'>$folder</td>";
}

echo"
<td class='$row_color'><span class='small'>".trimlink($forum_name, 30)."</span></td>
<td class='$row_color'><span class='small'><a href='".FORUM."viewthread.php?".$rstart."forum_id=".$forum_id."&thread_id=".$thread_id."#post_".$post_id."' title='".$post_subject."'>".trimlink($post_subject, 40)."</a></span></td>
<td align='center' width='1%' class='$row_color' style='white-space:nowrap'><span class='small'>".$thread_views."</span></td>
<td align='center' width='1%' class='$row_color' style='white-space:nowrap'><span class='small'>".($reply_count - 1)."</span></td>
<td align='center' width='1%' class='$row_color' style='white-space:nowrap'><span class='small'><a href='".BASEDIR."profile.php?lookup=".$thread_lastuser."'>".$user_name."</a></span></td>
</tr>\n";
$i++;
}
}


echo "</table>\n";
closetable();

require_once BASEDIR."side_right.php";
require_once BASEDIR."footer.php";
?>



Edited by muscapaul on 20-09-2008 04:04
Paul

Time flies like an arrow, fruit flies like banana (Groucho Marx)

sites: www.diptera.info (site owner); www.phpfusion-ned... (superadministrator)
 
axel
Paul thakyou

Disable smileys please.
Edited by axel on 20-09-2008 04:03
 
muscapaul
Done.
Paul

Time flies like an arrow, fruit flies like banana (Groucho Marx)

sites: www.diptera.info (site owner); www.phpfusion-ned... (superadministrator)
 
gozoc
Sorry ... but it dont works ...
Not in my portal v6.
I use this as /infusions/aw_forum_panel/last24.php
It runs, and runs, and runs .... came not back Wink
 
http://www.bs-fusion.de
Jump to Forum:
Donate
Please help to make
muscapaul.com
possible and enable
further improvements!
Login
Username

Password



Forgotten your password?
Request a new one here.
Temporary email addresses
Please note: While activating new accounts I usually check them out. If I notice an account registered with a temporary email address it will be deleted.
Newsletter
Newsletters are for registered members only.
Shoutbox
You must login to post a message.

01/12/2021 16:45
Szép napot

13/06/2021 07:01
I found this site again!

21/04/2020 18:32
Barely...

11/11/2013 00:48
Cool! This site is still around!

18/10/2013 20:28
hey! Smile

25/06/2011 01:40
My name is Andreo, I'm new member Smile

25/06/2011 01:39
Hello Muscapaul, is there anyone here ?

13/09/2010 01:02
nice mod thanks Smile

10/07/2010 15:01
Paul, hows thing?

07/07/2010 03:47
Who becomes the world champion on football? We wil

Render time: 0.07 seconds 9,194,516 unique visits