Onbekend |
|
Zo ziet ie er bij mij uit:
<?
ob_start(); // anti error
include("includes/config.php"); // configuratie
/*
***\\\LFFNews - Bestand: headlines.php///***
*/
?>
<link rel="stylesheet" type="text/css" href="style.css">
<?
$selecteer = mysql_query("SELECT * FROM nieuws ORDER BY id DESC LIMIT ".$aantalheadlines); // query
echo "<b>::</b> <font color='orange'><u>Laatste ".$aantalheadlines." nieuwsberichten</u></font> <b>::</b><br /><br />"; // titel
$aantal = mysql_num_rows($selecteer); // aantal headlines
if($aantal > 0){
// er zijn headlines
while($show = mysql_fetch_row($selecteer)){
// echo ze in de while
echo"<font color='orange'><b>::</b></font> <a href='nieuws.php?actie=comments&nid=".$show[0]."'>".stripslashes($show[1])."</a> [".$show[4].", ".$show[5]."]</font><br />";
}
}
else echo "</table><font color='orange'><b>::</b></font> Er zijn nog geen nieuwsberichten / headlines <font color='orange'><b>::</b></font>"; // geen items
echo "</table>";
?>
<? include("includes/config.php"); // configuratie /* ***\\\LFFNews - Bestand: headlines.php///*** */ ?> <link rel="stylesheet" type="text/css" href="style.css"> <? $selecteer = mysql_query("SELECT * FROM nieuws ORDER BY id DESC LIMIT ".$aantalheadlines); // query echo "<b>::</b> <font color='orange'><u>Laatste ".$aantalheadlines." nieuwsberichten</u></font> <b>::</b><br /><br />"; // titel if($aantal > 0){ // er zijn headlines // echo ze in de while echo"<font color='orange'><b>::</b></font> <a href='nieuws.php?actie=comments&nid=".$show[0]."'>".stripslashes($show[1])."</a> [".$show[4].", ".$show[5]."]</font><br />"; } } else echo "</table><font color='orange'><b>::</b></font> Er zijn nog geen nieuwsberichten / headlines <font color='orange'><b>::</b></font>"; // geen items ?>
Hier moet je wel wat mee kunnen;-) |