This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

"seiten" anzeigen?


avatar
Bitmap 0
From: -
"seiten" anzeigen?

zz werden die seiten ja auf dieser unterseite aufgelistet. gibt es auch eine moeglichkeit das sie in einem anderen template wie zb header oder footer angezeigt werden koennen?

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


1 Re: "seiten" anzeigen?
avatar
Administrator
1340
From: Vienna, Austria
"seiten" anzeigen?

Du fügst z.B. in site_header nach global $insert; folgendes ein:

dbconnect();

$query = DBQuery("SELECT * FROM esselbach_st_pages ORDER BY page_id DESC LIMIT 10");
while ($data = mysql_fetch_array($query)) $pagerows .= "<li><a href=\"page.php?id=$data[page_id]\">$data[page_title]</a><br /></li>";


LIMIT 10 im SQL Befehl zeigt die letzten 10 Seitentitel an. Dieser Wert kann beliebig geändert werden.

Jetzt musst du nur noch das neue Menü unterhalb im HTML Code einfügen:
                          <table cellspacing="0" cellpadding="0" width="160" bgcolor="#000000" border="0">

<tr>
<td>
<table cellspacing="1" cellpadding="3" width="100%" border="0">
<tr>
<td bgcolor="#008000">
<font face="Arial" color="#ffffff" size="2"><b>Seiten</b></font></td>
</tr>
<tr>
<td bgcolor="#ffffff"><font size="2">
$pagerows
</font></td>
</tr>
</table>
</td>
</tr>
</table>
<br />


Fertig Smiling Face

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.