Jeg har lavet en tagwall vil gerne have at der kun kan vises et bestemt antal tags af gangen fx. 5
Hvis der er flere end det skal den lave så man kan skifte side og se flere.
fx. side 1. 2 .3 osv.
Jeg ved jeg skal bruge noget limit noget men ikke helt hvordan det hele skal sættes sammen og såen :/
her er min kode:
<?
include('top.inc');
?>
<font class="overskrift">TagWall::.</font>
<a href="tag-add.php">Add tag</a>
<?
mysql_connect ("localhost","xxxx","xxxx");
mysql_select_db ("xxxx");
$foresp = mysql_query("SELECT * FROM tagwall ORDER BY `id` DESC LIMIT 0 , 30 ");
while($row = mysql_fetch_array($foresp)) { ?>
<center>
<table align="center" width="75%" cellspacing="0" cellpadding="0">
<tr>
<td class="tagwall_top_bottom" height="10" align="left" style="border-bottom: 1px solid black;" style="border-top: 1px solid black;" style="border-left: 1px solid black;"><font style="font-size: 13px"><b><? echo $row['emne']; ?></b></font></td>
<td class="tagwall_top_bottom" height="10" align="right" style="border-bottom: 1px solid black;" style="border-top: 1px solid black;" style="border-right: 1px solid black;"><font style="font-size: 13px">Skrevet d.: <? echo $row['dato']; ?></font></td>
</tr>
<tr>
<td valign="top" class="tagwall_main" colspan="2"style="border-bottom: 1px solid black;" style="border-right: 1px solid black;" style="border-left: 1px solid black;"><? echo nl2br(htmlentities($row['post'])); ?></td>
</tr>
<tr>
<td class="tagwall_top_bottom" height="10"align="left" style="border-bottom: 1px solid black;" style="border-left: 1px solid black;"><font style="font-size: 13px">Skrevet af: <b><a href="MAILTO:<? echo $row['mail']; ?>"><? echo $row['navn']; ?></b></a></font></td>
<td class="tagwall_top_bottom" height="10" align="right" style="border-bottom: 1px solid black;" style="border-right: 1px solid black;"><font style="font-size: 13px">HP: <a href="<? echo $row['hp']; ?>"><? echo $row['hp']; ?></a></font></td>
</tr>
</table>
</center>
<?
}
?>
<?
include('bottom.inc');
?>
Hilsen k-roy
(christian bekker A.)
www.k-roy.h4f.dk
-- Problemer er til for at blive løst
--
[Redigeret d. 06/08-03 15:38:54 af Christian Bekker .A]