is t possible when you add a category, you can link a page to it. Because i want to do this. I will explane it. I have have now this at my index. and every time i add a news item to the database, i have to update the index.
Code:
<table width="100%" border="0">
<tr>
<td class="Titel_Tabel">VV Heerde D1 aan het einde van de rit kampioen!</td>
</tr>(Title of the news)
<tr>
<td class="Link_Tabel"><a href="Heerde_D1_Nieuws.php">Meer...</a></td>
</tr>(Link to the news page)
<tr>
<td class="Datum_Tabel">01-06-2010</td>
</tr>(date when news is published)
<tr>
<td><hr /></td>
</tr>
</table>
and i want this when it is intergrated with n-13
Code:
<table width="100%" border="0">
<tr>
<td class="Titel_Tabel">{title}</td>
</tr>(Title of the news)
<tr>
<td class="Link_Tabel"><a href="{category link}">Meer...</a></td>
</tr>(Link to the news page)
<tr>
<td class="Datum_Tabel">{date}</td>
</tr>(date when news is published)
<tr>
<td><hr /></td>
</tr>
</table>
So when i can link a page to a category, I do not always have to update the index.
I hope you know what I mean and that this is possible:D