Har prøvet.. Nu viser den bare den nyeste besked, hvor den før ORDER BY ´id´ desc LIMIT 50, bare viste den første. Der er jo en fejl, og kan ikke selv finde den, så hvis der lige vil være en der kigger denne kode igennem "artikel.php" med kommentar-systemet i bunden (det der driller), så vil det være dejligt.
artikel.php
<?
session_start();
?>
<STYLE type=text/css>SELECT {
BORDER-RIGHT: #009900 1px solid; BORDER-TOP: #009900 1px solid; FONT-SIZE: 8pt; BORDER-LEFT: #009900 1px solid; COLOR: #009900; BORDER-BOTTOM: #009900 1px solid; FONT-FAMILY: Verdana; BACKGROUND-COLOR: #ffffff
}
OPTION {
BORDER-RIGHT: #009900 1px solid; BORDER-TOP: #009900 1px solid; FONT-SIZE: 5pt; BORDER-LEFT: #009900 1px solid; COLOR: #009900; BORDER-BOTTOM: #009900 1px solid; FONT-FAMILY: Verdana; BACKGROUND-COLOR: #ffffff
}
.ten {
FONT-SIZE: 8pt
}
TEXTAREA {
BORDER-RIGHT: #009900 1px solid; BORDER-TOP: #009900 1px solid; FONT-SIZE: 8pt; BORDER-LEFT: #009900 1px solid; COLOR: #009900; BORDER-BOTTOM: #009900 1px solid; FONT-FAMILY: Verdana; BACKGROUND-COLOR: #ffffff
}
BODY {
FONT-SIZE: 8pt; COLOR: #000000; FONT-FAMILY: Verdana; SCROLLBAR-BASE-COLOR: #009900
}
.invis {
BORDER-RIGHT: 0px; BORDER-TOP: 0px; FONT-SIZE: 8pt; BACKGROUND: none transparent scroll repeat 0% 0%; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px
}
A:link {
FONT-SIZE: 8pt; COLOR: #000000; FONT-FAMILY: Verdana; TEXT-DECORATION: none
}
A:visited {
FONT-SIZE: 8pt; COLOR: #000000; FONT-FAMILY: Verdana; TEXT-DECORATION: none
}
A:active {
COLOR: #009900; FONT-FAMILY: Verdana; TEXT-DECORATION: none
}
TD {
FONT-SIZE: 8pt; COLOR: #000000; FONT-FAMILY: Verdana
}
A:hover {
FONT-SIZE: 8pt; COLOR: #009900; FONT-FAMILY: Verdana; TEXT-DECORATION: underline
}
INPUT {
BORDER-RIGHT: #009900 1px solid; BORDER-TOP: #009900 1px solid; FONT-WEIGHT: normal; FONT-SIZE: 8pt; BACKGROUND: #ffffff; BORDER-LEFT: #009900 1px solid; BORDER-BOTTOM: #009900 1px solid; FONT-STYLE: normal; FONT-FAMILY: Verdana; FONT-VARIANT: normal
}
</STYLE>
<style>
BODY { scrollbar-3d-light-color:#17E100;
scrollbar-arrow-color:#FFFFFF;
scrollbar-base-color:green;
scrollbar-dark-shadow-color:17E100;
scrollbar-face-color:#17E100;
scrollbar-highlight-color:17E100;
scrollbar-shadow-color:green}
</style>
<body>
<body background="http://shocknews.frac.dk/bg2.gif">
</body>
<?
include("tilslut.php");
$query = mysql_query("SELECT * FROM salg_artikler WHERE id = '$_GET[id]'") or die(mysql_error());
$row = mysql_fetch_assoc($query);
?>
<b><?=$row[overskrift]?></b><HR
style="BORDER-RIGHT: #009900 3px dotted; BORDER-TOP: #009900 3px dotted; BORDER-LEFT: #009900 3px dotted; BORDER-BOTTOM: #009900 3px dotted"
color=#009900c>
<?=$row[nyhed]?><HR
style="BORDER-RIGHT: #009900 3px dotted; BORDER-TOP: #009900 3px dotted; BORDER-LEFT: #009900 3px dotted; BORDER-BOTTOM: #009900 3px dotted"
color=#009900c>
Skrevet af <a href="http://azddin.dk/community/loginok.php?side=seprofil&brugernavn=<?=$row[forfatter]?>"><?=$row[forfatter]?></a></b>, d. <?=$row[dato]?><HR
style="BORDER-RIGHT: #009900 3px dotted; BORDER-TOP: #009900 3px dotted; BORDER-LEFT: #009900 3px dotted; BORDER-BOTTOM: #009900 3px dotted"
color=#009900c>
<?
if (session_is_registered("brugernavn") AND ("kodeord") AND ("logintid")) {
include "tilslut.php";
?>
<?
echo "<form method='post' action='kommenter.php'>
Din mening: <select name='bedoem'>
<option>Kanon</option>
<option>Rigtig god</option>
<option>God</option>
<option>Skidt</option>
<option>Ringe</option>
</select> <br> <input type='hidden' name='artikel_id' value='$_GET[id]''> <input type='hidden' name='brugernavn' value='$_SESSION[brugernavn]'>Kommantar: <input type='text' name='kommentar'> <input type='submit' name='Submit' value='Kommenter'>
</form>";
?>
<?
}else{
print "Du skal være logget ind for at kommentere!";
}
?>
<HR
style="BORDER-RIGHT: #009900 3px dotted; BORDER-TOP: #009900 3px dotted; BORDER-LEFT: #009900 3px dotted; BORDER-BOTTOM: #009900 3px dotted"
color=#009900c>
<?php
include("tilslut.php");
$query5 = mysql_query("SELECT * FROM `artikel_kommentare` WHERE artikel_id = '".$_GET['id']."' ORDER BY `id` DESC LIMIT 50") or die(mysql_error());
$row = mysql_fetch_assoc($query5);
?>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="30"><img src="<?=$row[bedoem]?>.gif"></td>
<td align="left"><b><a href="http://azddin.dk/community/loginok.php?side=seprofil&brugernavn=<?=$row[brugernavn]?>"><?=$row[brugernavn]?></a></b> - <?=$row[dato]?><br><?=$row[kommentar]?></td>
</tr>
</table>
<HR
style="BORDER-RIGHT: #009900 3px dotted; BORDER-TOP: #009900 3px dotted; BORDER-LEFT: #009900 3px dotted; BORDER-BOTTOM: #009900 3px dotted"
color=#009900c></left>
På forhånd tak
[ Alle skal lære det før man selv kan ]