Moin,
kann mir bitte eine/r helfen?
Ich würde gerne die Kommentaranzahl gerne neben dem Datum stehen haben.
Kann mir das einer mal schnell so schreiben.
Ich weiss leider nicht wie ich das anstellen soll.
|
PHP-Quelltext
|
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
|
print "<p class="datum">".makedatum($ausgabe['datum'])."</p>";
if ($ausgabe['vorschau'] != "") {
print str_replace('%PAGE_DIR%', $settings['page_dir'], $ausgabe['vorschau']);
$vorschau = "<p><a href="".rBuildLink("","".$ausgabe['id'].".".makeMyURL($ausgabe['titel'])."","")."">Mehr lesen</a></p>";
} else {
print str_replace('%PAGE_DIR%', $settings['page_dir'], $ausgabe['text']);
$vorschau = "";
}
$kommentare = $ausgabe['kommentare'] == "0" ? "<p><a href="".rBuildLink("","".$ausgabe['id'].".".makeMyURL($ausgabe['titel'])."","")."">Kommentare (".$anzahlkommentare.")</a></p>" : "";
print "<table width="100%" cellspacing="0" cellpadding="0" border="0" summary="text">\n";
print "<tr>\n";
print "<td width="50%" align="left">".$vorschau."</td>\n";
print "<td width="50%" align="right">".$kommentare."</td>\n";
print "</tr>\n";
print "</table>\n";
print "</div>\n\n";
|
Da hätte ich es gerne wie auf dem Bild im Anhang.