nisel
User
- Beiträge
- 1.134
- Punkte
- 0
Hallo Ihr Lieben Ihr seit nun meine letzte Hoffnung. Ich weiß nicht mehr weiter.
Also zu meinem Problem -> Ich habe folgende php Datei: hp_thread.php
Also zu meinem Problem -> Ich habe folgende php Datei: hp_thread.php
Code:
<?php
##########################################################################
# Bestimmtes Themen auf Homepage anzeigen per Zufall#
##########################################################################
/* Einstellungen */
$board_url = "./board/"; // Pfad zum Forum
$topic_id = 0; // ID des zu anzeigenden Threads, wenn kein _GET[topic_id] definiert ist. (0 = Zufall)
/* ENDE */
if(isset($_GET['topic_id'])) {
$topic_id = $_GET['topic_id'];
}
define('PMF_INCLUDE', 1);
require($board_url.'head.php');
require($board_url.'lib/bbcode.inc.php');
$_bbcode = new pmf_bbcode();
if($topic_id == 0) {
$topic_anzahl_query = $_db->query('SELECT `id`
FROM `'.$_cfg['DB_PREFIX'].'topic`');
$topic_anzahl = $_db->num_rows($topic_anzahl_query);
$topic_id = mt_rand(1,$topic_anzahl);
}
$thread_query = $_db->query('SELECT p.`id`,
p.`post_date`,
p.`topic_id`,
p.`text`,
p.`bbcode`,
p.`html`,
p.`smilie`,
t.`name`,
t.`posts`,
t.`views`,
t.`id` AS `topic_id`,
u.`name` AS `user_name`
FROM `'.$_cfg['DB_PREFIX'].'topic` AS t,
`'.$_cfg['DB_PREFIX'].'post` AS p,
`'.$_cfg['DB_PREFIX'].'user` AS u
WHERE t.`post_date` = p.`post_date`
AND p.`user_id` = u.`id`
AND t.`id` = '.$topic_id.'
LIMIT 1');
$Daten_thread = $_db->fetch_array($thread_query);
$Daten_thread['post_time'] = date('H:i:s', $Daten_thread['post_date']);
$Daten_thread['post_date'] = date('d.m.Y', $Daten_thread['post_date']);
$text_thread = $_bbcode->parse($Daten_thread['text']);
$posts_query = $_db->query('SELECT p.`id`,
p.`post_date`,
p.`topic_id`,
p.`text`,
p.`bbcode`,
p.`html`,
p.`smilie`,
u.`name` AS `user_name`
FROM `'.$_cfg['DB_PREFIX'].'post` AS p,
`'.$_cfg['DB_PREFIX'].'user` AS u
WHERE p.`topic_id` = '.$topic_id.'
AND p.`user_id` = u.`id`
ORDER BY p.`post_date`,
p.`id`
LIMIT 1,-1');
while($Daten_posts = $_db->fetch_array($posts_query)) {
$Daten_posts['post_time'] = date('H:i:s', $Daten_posts['post_date']);
$Daten_posts['post_date'] = date('d.m.Y', $Daten_posts['post_date']);
$text_posts = $_bbcode->parse($Daten_posts['text']);
$thread_listbit .= "<tr>
<td>
<a href=\"".$_cfg['SITE']."/profile.php?name=".$Daten_posts['user_name']."\">".$Daten_posts['user_name']."</a> am ".$Daten_posts['post_date']." um ".$Daten_posts['post_time']." Uhr.
</td>
</tr>
<tr>
<td>
".$text_posts."
</td>
</tr>";
}
echo"<table align=\"center\" border=\"1\" cellpadding=\"2\" cellspacing=\"0\" style=\"border-collapse: collapse;\" width=\"100%\">
<tr>
<td>
[b]<a href=\"".$_cfg['SITE']."/topic.php?id=".$Daten_thread['topic_id']."\">".$Daten_thread['name']."</a>[/b]
</td>
</tr>
<tr>
<td>
<a href=\"".$_cfg['SITE']."/profile.php?name=".$Daten_thread['user_name']."\">".$Daten_thread['user_name']."</a> am ".$Daten_thread['post_date']." um ".$Daten_thread['post_time']." Uhr.
</td>
</tr>
<tr>
<td>
".$text_thread."
</td>
</tr>
</table>
<table align=\"center\" border=\"1\" cellpadding=\"2\" cellspacing=\"0\" style=\"border-collapse: collapse;\" width=\"100%\">
".$thread_listbit."
</table>
<table align=\"center\" cellpadding=\"2\" cellspacing=\"0\" style=\"border:1px solid black\" width=\"100%\">
<tr>
<td align=\"right\">
<a href=\"".$_cfg['SITE']."/newpost.php?id=".$Daten_thread['topic_id']."\">Kommentar schreiben</a>
</td>
</tr>
</table>";
?>
Dazu folgenden include Code
Code:<?php include("./hp_thread.php"); ?>
Allerdings bekomme ich nichts aber auch garnichts zu sehen... der Includecode ist an der Stelle meiner Homepage, aber dort erscheint nichts, wenn ich die hp_thread.php aufrufe -> http://www.meinfeuchtesgeheimnis.de/hp_thread.php kommt das! Also schints ja zu funzen, Warum kann ich nichts sehen?
Ich danke Euch sehr für Hilfe
ps.: Natürlich ist die Datei ins richtige Verzeichniss geladen..!