Crew .NET |
|
Dat doe je toch met een WHERE hoor...
Stel, je bent op de pagina waar alle berichten staan uit het archief. Voor elk bericht uit het archief is er een link, zoals jou code.:
<?php
include("config.php");
$result = mysql_query("SELECT id, titel FROM nieuws") or die(mysql_error());
while($show = mysql_fetch_assoc($result))
{
$titel = htmlspecialchars($show['titel']);
echo '<a href="nieuws.php?id='.$show['id'].'">'.$titel.'</a><br />';
}
<?php include("config.php"); { echo '<a href="nieuws.php?id='.$show['id'].'">'.$titel.'</a><br />'; }
Als je er dan op klikt kom je op die pagina en die je het volgende in je code en kan je de gewenste gegevens ophalen van dat ENE nieuwsbericht...
<?php
include("config.php");
if(isset($_GET["id"]) && $_GET["id"] != "")
{
$id = $_GET["id"];
$query = mysql_query("SELECT titel, bericht, datum FROM nieuwsarchief WHERE id = '".$id."' ");
while($result = mysql_fetch_assoc($query))
{
echo "<table><tr><td>";
echo $result["titel"];
echo " - ";
echo $result["datum"];
echo "</td></tr><tr><td>";
echo nl2br($result["bericht"]);
echo "</td></tr></table>";
}
}
?>
<?php include("config.php"); if(isset($_GET["id"]) && $_GET["id"] != "") { $id = $_GET["id"]; $query = mysql_query("SELECT titel, bericht, datum FROM nieuwsarchief WHERE id = '".$id."' "); { echo "</td></tr><tr><td>"; echo "</td></tr></table>"; } } ?>
|