King of the hil
Neuling
Thread Starter
- Mitglied seit
- 01.04.2003
- Beiträge
- 677
Hallo zusammen, Ich bräuchte unterstützung für das nachfolgende PHP Script.
Ich will die Textgröße ändern, so 8 - 10 würden passen!
Und falls es möglich ist, würde ich auch den Punkt "Number Replies" rausnehmen!
Hier ist der <body bgcolor="#000050" text="#FFFFFF" link="#FF3300">
</html>
Link
Es sollte später auf dieser Seite unten rechts reinpassen!
<body bgcolor="#000050" text="#FFFFFF" link="#FF3300">
</html>
Link zur Seite
Hier ist das Script
<?
// +----------------------------------------------------------------------+
// | //...........Last X Posts phpBB2.0.........\\ |
// +----------------------------------------------------------------------+
// | Copyright (c) 2002 secra Scripts, Saudi Arabia |
// +----------------------------------------------------------------------+
// | http://www.fut4.com |
// +----------------------------------------------------------------------+
// | Author:secra4<secra4@hotmail.com> |
// | |
// | Date: 2002-04-22 : Lunch of Ver. 1 |
// | |
// +----------------------------------------------------------------------+
//
// Version 1.0
// ***************************************************//
// ************* Configration Start ****************//
// ***************************************************//
PRINTF("<html>");
$openlinks="_blank"; // Open link type [_blank: open in new window]
$LIMIT=5; //// Number of Topics
$exforum= array(); //Default: No Forum Will Be Execluded - eg. array(1,5,8)
define('IN_PHPBB', true);
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
$fut="";
IF(count($exforum)):
$fut="where ";
FOR ($Q=0;$Q<=count($exforum)-1;$Q++){
if ($Q== count($exforum)-1):
$fut.="forum_id <> '".$exforum[$Q]."' ";
ELSE:
$fut.="forum_id <> '".$exforum[$Q]."' and ";
ENDIF;
}
ENDIF;
$QUERY = "SELECT * FROM phpbb_topics ".$fut." ORDER BY topic_time DESC limit $LIMIT";
$result = mysql_query($QUERY);
$topics=mysql_num_rows($result);
while($myrow= mysql_fetch_array($result)) {
$Y=$Y+1;
IF($myrow["topic_status"]==0):
PRINTF("$Y- $asd<a target='$openlinks' href='viewtopic.$phpEx?t=%s'><b> %s</b>\n\n</a>Number Replies :%s\n<BR>",
$myrow["topic_id"], $myrow["topic_title"],$myrow["topic_replies"]);
ENDIF;
}
?>
Ich will die Textgröße ändern, so 8 - 10 würden passen!
Und falls es möglich ist, würde ich auch den Punkt "Number Replies" rausnehmen!
Hier ist der <body bgcolor="#000050" text="#FFFFFF" link="#FF3300">
</html>
Link
Es sollte später auf dieser Seite unten rechts reinpassen!
<body bgcolor="#000050" text="#FFFFFF" link="#FF3300">
</html>
Link zur Seite
Hier ist das Script
<?
// +----------------------------------------------------------------------+
// | //...........Last X Posts phpBB2.0.........\\ |
// +----------------------------------------------------------------------+
// | Copyright (c) 2002 secra Scripts, Saudi Arabia |
// +----------------------------------------------------------------------+
// | http://www.fut4.com |
// +----------------------------------------------------------------------+
// | Author:secra4<secra4@hotmail.com> |
// | |
// | Date: 2002-04-22 : Lunch of Ver. 1 |
// | |
// +----------------------------------------------------------------------+
//
// Version 1.0
// ***************************************************//
// ************* Configration Start ****************//
// ***************************************************//
PRINTF("<html>");
$openlinks="_blank"; // Open link type [_blank: open in new window]
$LIMIT=5; //// Number of Topics
$exforum= array(); //Default: No Forum Will Be Execluded - eg. array(1,5,8)
define('IN_PHPBB', true);
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
$fut="";
IF(count($exforum)):
$fut="where ";
FOR ($Q=0;$Q<=count($exforum)-1;$Q++){
if ($Q== count($exforum)-1):
$fut.="forum_id <> '".$exforum[$Q]."' ";
ELSE:
$fut.="forum_id <> '".$exforum[$Q]."' and ";
ENDIF;
}
ENDIF;
$QUERY = "SELECT * FROM phpbb_topics ".$fut." ORDER BY topic_time DESC limit $LIMIT";
$result = mysql_query($QUERY);
$topics=mysql_num_rows($result);
while($myrow= mysql_fetch_array($result)) {
$Y=$Y+1;
IF($myrow["topic_status"]==0):
PRINTF("$Y- $asd<a target='$openlinks' href='viewtopic.$phpEx?t=%s'><b> %s</b>\n\n</a>Number Replies :%s\n<BR>",
$myrow["topic_id"], $myrow["topic_title"],$myrow["topic_replies"]);
ENDIF;
}
?>
Zuletzt bearbeitet: