Lid |
|
Kijk ik ben bezig met de site van mijn organisatie, nu hebben wij artikelen en heb ik eronder gemaakt dat je next kan druken. Nu wil ik eigelijk als je bij de laatste artikel bent, dat je dan niet meer VOLGENDE kan drukken, maar dat hij die nie weergeeft.
Kan iemand mij helpen hiermee? is waarschijnlijk in simpele code. alleen ben ik niet zo slim D:
<?php include("edutje.php"); ?>
<Br><br>
<?php
$id = htmlentities($_GET["id"], ENT_QUOTES);
$query = mysql_query("select * from dok_v2_eduwi where id='".$id."'") or die (mysql_error());
while($row = mysql_fetch_array($query)) {
$next = $row["id"];
$nextt = $next + 1;
$vorige = $row["id"];
$vorigee = $vorige - 1;
?>
<img src="_gfx/news_01.gif" width="655" height="24" alt="top" />
<center><table border="0" width="98%" align="left">
<tr>
<td align="left">
<p class="pleft"><b><?php echo $row["titel"]; ?></b></p>
</td>
</tr>
<tr>
<td style="padding-top:6px;"><table width="98%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="left"><?php echo $row["uitleg"];?>
</tr>
</table>
<br>
<center><a href="index.php?site=watis&id=<?php echo $vorigee; ?>"> Vorige </a> - <a href="index.php?site=watis&id=<?php echo $nextt; ?>"> Volgende </a></center>
</td>
</tr>
</table></center>
<img src="_gfx/news_03.jpg" width="655" height="24" alt="bottom" />
<br>
<?php
}
?>
<?php include("edutje.php"); ?> <Br><br> <?php $next = $row["id"]; $nextt = $next + 1; $vorige = $row["id"]; $vorigee = $vorige - 1; ?> <img src="_gfx/news_01.gif" width="655" height="24" alt="top" /> <center><table border="0" width="98%" align="left"> <tr> <td align="left"> <p class="pleft"><b> <?php echo $row["titel"]; ?></b></p> </td> </tr> <tr> <td style="padding-top:6px;"><table width="98%" border="0" cellspacing="0" cellpadding="0"> <tr> <td align="left"> <?php echo $row["uitleg"];? > </tr> </table> <br> <center><a href="index.php?site=watis&id= <?php echo $vorigee; ?>"> Vorige </a> - <a href="index.php?site=watis&id= <?php echo $nextt; ?>"> Volgende </a></center> </td> </tr> </table></center> <img src="_gfx/news_03.jpg" width="655" height="24" alt="bottom" /> <br> <?php } ?>
|