Laatste berichten.
Forumregels
Sinds 1 januari 2009 wordt phpBB2 niet meer ondersteund.
Onderstaande informatie is verouderd en dient uitsluitend als archief.
Sinds 1 januari 2009 wordt phpBB2 niet meer ondersteund.
Onderstaande informatie is verouderd en dient uitsluitend als archief.

Laatste berichten.
http://www.hulpverlening.net/forum/laatsteberichten.php
Ik zoek die mod, waar kun je die vinden als ik vragen mag?
Mvg,
Mario 8)
Ik zoek die mod, waar kun je die vinden als ik vragen mag?
Mvg,
Mario 8)
~~Bedankt~~
http://www.hulpdienstenforum-vlaanderen.be/
http://www.hulpdienstenforum-vlaanderen.be/
Van harte bedankt voor de snelle reactie :thumb:
Mvg,
Mario 8)
Mvg,
Mario 8)
~~Bedankt~~
http://www.hulpdienstenforum-vlaanderen.be/
http://www.hulpdienstenforum-vlaanderen.be/
# This file will contain the information about your module
# for the statistics parser to use.
#
# You can make comments by using #
# Note that the text must be on a single line for the parser
# to read it! Excluding the extra install info area.
# Module Name
[name] Latest Topics
# your name
[author] Tommy Jensen
# your email
[email] tommy_jensen67@hotmail.com
# your webpage url
[url] http://www.sc-resources.net
# module version
[version] 1.0.2
# extra info for the user, everything below
# this block will be included, regardless if
# you use a # even.
[extra_info]
No extra information on this module.
Wat moet ik nu eigenlijk doen, ik heb de files in de juiste mappen geupload.
Mvg,
Mario 8)
# for the statistics parser to use.
#
# You can make comments by using #
# Note that the text must be on a single line for the parser
# to read it! Excluding the extra install info area.
# Module Name
[name] Latest Topics
# your name
[author] Tommy Jensen
# your email
[email] tommy_jensen67@hotmail.com
# your webpage url
[url] http://www.sc-resources.net
# module version
[version] 1.0.2
# extra info for the user, everything below
# this block will be included, regardless if
# you use a # even.
[extra_info]
No extra information on this module.
Wat moet ik nu eigenlijk doen, ik heb de files in de juiste mappen geupload.
Mvg,
Mario 8)
~~Bedankt~~
http://www.hulpdienstenforum-vlaanderen.be/
http://www.hulpdienstenforum-vlaanderen.be/
Uhmz, voor die mod heb je de static page nodig.
http://www.phpbbhacks.com/download/3090 is beter bruikbaar denk ik.
http://www.phpbbhacks.com/download/3090 is beter bruikbaar denk ik.
<?
/**
* Mod Title: Latest Topics
* Mod Version: phpBB 2.0.4
* Author: Charlie Page
* Description: Shows latest topics on any page
* Release: v1.0, 05.30.2004
***
* Demo: http://www.xboxassassin.com/e3
* Installation Level: Easy
* Installation Time: 1 minute
* Files To Edit: This one
* Included Files: php-latest.php
***
* Installation Notes:
* Upload this file and set $ppath and $url,
* Include this into a page and your done!
*/
$url = "/forumsfolder"; // If url is - http://www.yourforums.com/forums , then enter in "/forums"
$ppath = "/home/user/public_html/forumsfolder/config.php"; // Physical path to the config.php file
if(empty($count))
$count = "5"; // How many topics to link to
//-----------------[ DO NOT EDIT BELOW HERE ]-------------------------
include_once("$ppath");
$db = @mysql_connect("$dbhost", "$dbuser", "$dbpasswd") or die("here we die at connection");
@mysql_select_db("$dbname",$db) or die("here we die");
$prefix = "$table_prefix";
$query="SELECT * FROM $prefix_topics ORDER BY `topic_id` DESC LIMIT 0, $count";
$result=mysql_query($query);
while($row = mysql_fetch_array($result)) {
$topicid = "$row[topic_id]";
$title = "$row[topic_title]";
$forumid = "$row[forum_id]";
$replies = "$row[topic_replies]";
echo "- <a title=\"$title\" href=\"$url/viewtopic.php?t=$topicid&sid=$forumid\">$title</a> (<i>$replies</i>)<br>";
}
?>
1 file is er, en dat staat er in. Wat moet ik nu juist doen?
Mvg,
Mario 8)
/**
* Mod Title: Latest Topics
* Mod Version: phpBB 2.0.4
* Author: Charlie Page
* Description: Shows latest topics on any page
* Release: v1.0, 05.30.2004
***
* Demo: http://www.xboxassassin.com/e3
* Installation Level: Easy
* Installation Time: 1 minute
* Files To Edit: This one
* Included Files: php-latest.php
***
* Installation Notes:
* Upload this file and set $ppath and $url,
* Include this into a page and your done!
*/
$url = "/forumsfolder"; // If url is - http://www.yourforums.com/forums , then enter in "/forums"
$ppath = "/home/user/public_html/forumsfolder/config.php"; // Physical path to the config.php file
if(empty($count))
$count = "5"; // How many topics to link to
//-----------------[ DO NOT EDIT BELOW HERE ]-------------------------
include_once("$ppath");
$db = @mysql_connect("$dbhost", "$dbuser", "$dbpasswd") or die("here we die at connection");
@mysql_select_db("$dbname",$db) or die("here we die");
$prefix = "$table_prefix";
$query="SELECT * FROM $prefix_topics ORDER BY `topic_id` DESC LIMIT 0, $count";
$result=mysql_query($query);
while($row = mysql_fetch_array($result)) {
$topicid = "$row[topic_id]";
$title = "$row[topic_title]";
$forumid = "$row[forum_id]";
$replies = "$row[topic_replies]";
echo "- <a title=\"$title\" href=\"$url/viewtopic.php?t=$topicid&sid=$forumid\">$title</a> (<i>$replies</i>)<br>";
}
?>
1 file is er, en dat staat er in. Wat moet ik nu juist doen?
Mvg,
Mario 8)
~~Bedankt~~
http://www.hulpdienstenforum-vlaanderen.be/
http://www.hulpdienstenforum-vlaanderen.be/