PHP ver gevorderde |
|
nee,maar gewoon het zoveelste bericht.
maar anders los ik het wel op een andere manier op
------------------------------------------------------------
kem een oplossing gevonden(waarschijnlijk niet zo goed,maar hij werkt)
<?php
$sql = "SELECT * FROM nieuws WHERE id='".$nieuwsid."'";
$query = mysql_query($sql);
while ($obj = mysql_fetch_object($query)) {
$bericht = htmlspecialchars($obj->bericht);
$bericht = nl2br($bericht);
$bericht = wordwrap($bericht, 60, "\n", 1 );
$bericht=ubb_smiley($bericht);
$aantalnieuws = mysql_num_rows(mysql_query("SELECT * FROM nieuws"));
$aantalnnieuws = mysql_num_rows(mysql_query("SELECT * FROM nieuws WHERE id >".$obj->id.""));
$aantaldnieuws = $aantalnieuws - $aantalnnieuws;
echo"$aantaldnieuws";
?>
<?php $sql = "SELECT * FROM nieuws WHERE id='".$nieuwsid."'"; $bericht = nl2br($bericht); $bericht = wordwrap($bericht, 60, "\n", 1 ); $bericht=ubb_smiley($bericht); $aantaldnieuws = $aantalnieuws - $aantalnnieuws; ?>
|