<?php
require("configuratie.php");
$nieuwsophalen = mysql_query("SELECT id, auteur, titel, date_format(datum, '%d %m %y %H') as nieuwsdatum_format, bericht, uitgebreid FROM nieuws order by datum DESC LIMIT 0, $max");
$aantal = mysql_num_rows($nieuwsophalen);
if($aantal == '0'){
// er zijn nog geen nieuwsberichten gepost!
$bericht = "Er zijn nog GEEN nieuwsberichten gepost";
}
else{
if(!isset($_GET['actie'])){
$bericht = "<table>";
while($nieuwsgegevens = mysql_fetch_object($nieuwsophalen){
// laat het nieuws zien!
$nieuwsbericht = nl2br(htmlentities($obj->bericht);
$bericht .= "<tr>";
$bericht .= "$obj->titel - op $obj->nieuwsdatum_format door $obj->auteur";
$bericht .= "</tr>";
$bericht .= "<tr>";
$bericht .= "$nieuwsbericht";
$bericht .= "<br /><br />";
$bericht .= "<b><a href=\"index.php?pagina=nieuws&actie=leesmeer&id=$obj->id\">Lees meer</a>";
$bericht .= "</tr>";
$bericht .= "<br>";
}
}
}
?>
<?php
require("configuratie.php");
$nieuwsophalen=mysql_query("SELECT id, auteur, titel, date_format(datum, '%d %m %y %H') as nieuwsdatum_format, bericht, uitgebreid FROM nieuws order by datum DESC LIMIT 0, $max");
<?php
require("configuratie.php");
$nieuwsophalen = mysql_query("SELECT id, auteur, titel, date_format(datum, '%d %m %y %H') as nieuwsdatum_format, bericht, uitgebreid FROM nieuws order by datum DESC LIMIT 0, $max");
$aantal = mysql_num_rows($nieuwsophalen);
if($aantal != '0'){
if(!isset($_GET['actie'])){
$bericht = "<table>";
while($nieuwsgegevens = mysql_fetch_object($nieuwsophalen)){
$nieuwsbericht = nl2br(htmlentities($obj->bericht);
$bericht .= "<tr>";
$bericht .= "$obj->titel - op $obj->nieuwsdatum_format door $obj->auteur";
$bericht .= "</tr>";
$bericht .= "<tr>";
$bericht .= "$nieuwsbericht";
$bericht .= "<br /><br />";
$bericht .= "<b><a href=\"index.php?pagina=nieuws&actie=leesmeer&id=$obj->id\">Lees meer</a>";
$bericht .= "</tr>";
$bericht .= "<br>";
}
}
}
}
else{
// er zijn nog geen nieuwsberichten gepost!
$bericht = "Er zijn nog GEEN nieuwsberichten gepost";
}
echo $bericht;
?>
<?php
require("configuratie.php");
$nieuwsophalen=mysql_query("SELECT id, auteur, titel, date_format(datum, '%d %m %y %H') as nieuwsdatum_format, bericht, uitgebreid FROM nieuws order by datum DESC LIMIT 0, $max");
Cool. Als je snel punten wilt verdienen in PHP zet je gewoon tig keer dezelfde fout in je script, en vraagt voor elke zelfde fout opnieuw wat de oorzaak is...