ipb-laatste-topics

Gesponsorde koppelingen

PHP script bestanden

  1. ipb-laatste-topics

« Lees de omschrijving en reacties

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
/* EDIT ALLES HIERONDER */
$host         = 'localhost'; //mysql host, meestal is dat 'localhost'
$Naam      = 'donald'; //mysql username
$Paswoord = 'duck'; //mysql passwoord
$database = 'dbtje'; //mysql database
$pre         = 'ibf_'; //ipb table prefix, standaard 'ibf_'
$tids         = 5; //aantal topics dat weergegeven moet worden
$b_url      = 'http://forum.site.nl/'; //url naar je ipb board, moet eindigen op '/'

/* NIKS MEER TE EDITEN */
//----------------------------------------------------------\\


mysql_connect($host,$Naam,$Paswoord);
mysql_select_db($database);

setlocale (LC_TIME, 'nl_NL');
setlocale (LC_TIME, 'Dutch');

//de 0,5 laat de laatste 5 opsts zien, als je er 10 wil zien, doe dan 10 ipv 5;)
$query = mysql_query("SELECT * FROM ".$pre."posts ORDER BY pid DESC LIMIT 0,".$tids);
while($doe = mysql_fetch_object($query)) {

 $Tijd = $doe->post_date;
 $Topicid = $doe->topic_id;
  
 $Tijd = strftime("%H:%M", $Tijd);

   $query2 = mysql_query("SELECT * FROM ".$pre."topics WHERE tid='".$Topicid."'");
   while($doe2 = mysql_fetch_object($query2)) {

   $Topicnaam = $doe2->title;

   }


 if (strlen($Topicnaam) > 15) {
   $Titel = substr($Topicnaam,0,15)."...";
 }


 echo "[".$Tijd."]<a href=\"".$b_url."index.php?showtopic=".$Topicid."\" title=\"".$Topicnaam."\" target=\"_blank\">".$Topicnaam."</a><br>";

}

?>

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.