Nieuw lid |
|
via dit script lees ik mn db uit, en de berichten worden eerst getoond als linkjes.
Na aanklikken van een linkje verschijnt het bericht.
Maar onder het bericht staan nog steeds die linkjes in beeld.
Nu wil ik dat als er een bericht in beeld is, dat dan niet de linkjes in beeld zijn.
Maar ik zou wel willen dat alles op deze ene pagina gebeurt.
Ik heb al zitten proberen met else enzo, maar ik krijg het niet voor elkaar, zou iemand me een handje willen helpen ?
<?php include ('config.php');
$nieuwsid=$_GET['nieuwsid'];
$query=mysql_query("SELECT * FROM nieuwsbrieven where id='$id'") or die(mysql_error());
$obj=mysql_fetch_object($query);
$bericht = $obj->bericht;
$bericht = nl2br($bericht);
$bericht = wordwrap($bericht, 60, "\n", 1 );
?>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><?php echo "<p class= \"headers\">$obj->onderwerp</p>"; ?></td>
</tr>
<tr>
<td><?php echo"<p class= \"tekst\"><br><br>$bericht</p>"; ?></td>
</tr>
</table>
<?php
$sql = "SELECT * FROM nieuwsbrieven ORDER BY ID DESC";
$query = mysql_query($sql) or die(mysql_error());
$rtel = mysql_num_rows($query);
if ($rtel < 1)
{
echo "Geen berichten";
}
else
{
$rtel/=$max;
if (empty($pagina)) $pagina=1;
$van=($pagina-1)*$max;
if ($pagina > ceil($rtel)) $pagina=1;
for ($i = 1; $i <= ceil($rtel); $i++)
{
if ($pagina == $i)
$paginas[$i] = "<b>$i</b>";
else
$paginas[$i] = "<a href=\"$_SERVER[REQUEST_URI]"."?pagina=$i\">$i</a>";
}
$paginas= implode(" | ", $paginas);
$vorige = ($pagina-1) ? "<a href=\"$php_self?pagina=" .($pagina - 1). "\"> Vorige</a>" : "";
$volgende = ($pagina-ceil($rtel)) ? "<a href=\"$php_self?pagina=" . ($pagina + 1) . "\">Volgende </a>" : "";
if ($vorige && $volgende)
{
$navigatie = ("$vorige | $paginas | $volgende");
}
else
{
$navigatie = ("$vorige | $paginas | $volgende");
}
$query = mysql_query("SELECT * FROM nieuwsbrieven ORDER BY id DESC LIMIT $van, $max");
while ($obj = mysql_fetch_object($query))
{
$nieuwsid = $obj->id;
?>
<table>
<tr>
<td><?php echo "<a href=\"?id=$nieuwsid\"class=\"mainlevel\">$obj->onderwerp</a>"; ?></td>
<td><?php echo "<p class=\"datum\">$obj->datum</P>"; ?></td>
</tr>
</table>
<?php } ?>
<?php } ?>
<table>
<tr>
<td><br><br><?php echo "<p class=\"datum\">$navigatie"; ?></td>
</tr>
</table>
<?php include ('config.php'); $nieuwsid=$_GET['nieuwsid']; $bericht = $obj->bericht; $bericht = nl2br($bericht); $bericht = wordwrap($bericht, 60, "\n", 1 ); ?> <table border="0" cellspacing="0" cellpadding="0"> <tr> <td> <?php echo "<p class= \"headers\">$obj->onderwerp</p>"; ?></td> </tr> <tr> <td> <?php echo"<p class= \"tekst\"><br><br>$bericht</p>"; ?></td> </tr> </table> <?php $sql = "SELECT * FROM nieuwsbrieven ORDER BY ID DESC"; if ($rtel < 1) { } else { $rtel/=$max; if (empty($pagina)) $pagina=1; $van=($pagina-1)*$max; if ($pagina > ceil($rtel)) $pagina=1; for ($i = 1; $i <= ceil($rtel); $i++) { if ($pagina == $i) $paginas[$i] = "<b>$i</b>"; else $paginas[$i] = "<a href=\"$_SERVER[REQUEST_URI]"."?pagina=$i\">$i</a>"; } $paginas= implode(" | ", $paginas); $vorige = ($pagina-1) ? "<a href=\"$php_self?pagina=" .($pagina - 1). "\"> Vorige</a>" : ""; $volgende = ($pagina-ceil($rtel)) ? "<a href=\"$php_self?pagina=" . ($pagina + 1) . "\">Volgende </a>" : ""; if ($vorige && $volgende) { $navigatie = ("$vorige | $paginas | $volgende"); } else { $navigatie = ("$vorige | $paginas | $volgende"); } $query = mysql_query("SELECT * FROM nieuwsbrieven ORDER BY id DESC LIMIT $van, $max"); { $nieuwsid = $obj->id; ?> <table> <tr> <td> <?php echo "<a href=\"?id=$nieuwsid\"class=\"mainlevel\">$obj->onderwerp</a>"; ?></td> <td> <?php echo "<p class=\"datum\">$obj->datum</P>"; ?></td> </tr> </table> <?php } ?> <?php } ?> <table> <tr> <td><br><br> <?php echo "<p class=\"datum\">$navigatie"; ?></td> </tr> </table>
bedankt in elk geval.
|