07.08.2005, 18:54
Hallo alle miteinander,
ich hoffe ihr könnt mir helfen.
ich habe eine datei die heißt "guide.php"
diese soll aber nicht nur einen code (bzw momentan zeigt sie gar nix mehr aus der db) sondern 5 anzeigen , sowas die letzten 5 themen like
templates hab ich folgende
und
Ich bitte inständig um Hilfe und Erklärung warum das nicht geht
ich hoffe ihr könnt mir helfen.
ich habe eine datei die heißt "guide.php"
Code:
<?php
$templatelist = "guide_start,guide_news_row";
require "./global.php";
require "./inc/functions_post.php";
// Load global language phrases
$lang->load("guide");
$userpermissions = getuserpermissions($mybb['uid']);
if($mybb['uid'] == 0 || $userpermissions['canusercp'] == "no")
{
nopermission();
}
else {
$query = $db->query("SELECT * FROM ".TABLE_PREFIX."guides WHERE activation = '1' ORDER BY tid ASC LIMIT 5");
while($guide = $db->fetch_array($query)) {
$uid = $guide['uid'];
$tid = $guide['tid'];
$titel = $guide['guidetitel'];
$story = $guide['guidestory'];
}
eval("\$guide_news_ = \"".$templates->get("guide_news_row")."\";");
}
eval("\$showguide = \"".$templates->get("guide_start")."\";");
outputpage($showguide);
?>
diese soll aber nicht nur einen code (bzw momentan zeigt sie gar nix mehr aus der db) sondern 5 anzeigen , sowas die letzten 5 themen like
templates hab ich folgende
Code:
<html>
<head>
<title>$settings[bbname]</title>
$headerinclude
</head>
<body>
$header
<table width="$theme[tablewidth]" cellspacing="0" cellpadding="$theme[tablespace]" border="0" align="center">
<tr><td valign="top" width="200">
<table cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td class="tborder">
<table border="0" cellspacing="$theme[borderwidth]" cellpadding="$theme[tablespace]" width="100%">
<tr>
<td class="thead">$lang->guide_menu_start</td>
</tr>
<tr>
<td class="trow1">
$lang->guide_menu_1
Die Neusten Guides<br />
<br>
Guide schreiben <br />
</td>
</tr>
</table>
</td></tr></table>
<br />
<table cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td class="tborder">
<table border="0" cellspacing="$theme[borderwidth]" cellpadding="$theme[tablespace]" width="100%">
<tr>
<td class="thead">Guide · Kategorien</td>
</tr>
<tr>
<td class="trow1">
Jobs und Skills<br />
Versteckte Ebenen und Wege<br />
Item Guides<br />
</td>
</tr>
</table>
</td></tr></table>
</td>
<td class="trow"> </td>
<td width="*" valign="top">
<table cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td class="tborder">
<table border="0" cellspacing="$theme[borderwidth]" cellpadding="$theme[tablespace]" width="100%">
<tr>
<td width="100%" class="thead"><strong>$lang->start_guide</strong></td>
</tr>
<tr>
<td class="trow1">$lang->start_welcome</td>
</table></td></tr></table>
$guide_news_row
</td>
</tr>
</table>
$footer
</body>
</html>
und
Code:
<br><br>
<table cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td class="tborder">
<table border="0" cellspacing="$theme[borderwidth]" cellpadding="$theme[tablespace]" width="100%">
<tr>
<td width="100%" class="thead"><strong>$titel</strong></td>
</tr>
<tr>
<td class="trow1">$story<br><div align="right"><a href="guides.php?readguide=$tid">...weiterlesen</div></td>
</table></td></tr></table>
Ich bitte inständig um Hilfe und Erklärung warum das nicht geht