You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

86 lines
2.0 KiB
PHTML

<?php
$title = "Kommentare zu den News";
$header = "Kommentar";
include ("../../../camp2011/includes/header.php");
14 years ago
if(isset($_GET["nid"])) {
if(isset( $_GET["text"])) {
$ch_sql = "INSERT INTO `news_comments` (`Refid`, `Datum`, `Text`, `UID`) ".
"VALUES ('". $_GET["nid"]. "', '". date("Y-m-d H:i:s"). "', '". $_GET["text"]. "', '". $_SESSION["UID"]. "')";
$Erg = mysql_query($ch_sql, $con);
14 years ago
if ($Erg == 1) {
echo "Eintrag wurde gespeichert<br /><br />";
SetHeaderGo2Back();
}
}
14 years ago
$SQL = "SELECT * FROM `news_comments` WHERE `Refid`='". $_GET["nid"]. "' ORDER BY 'ID'";
$Erg = mysql_query($SQL, $con);
echo mysql_error( $con);
14 years ago
// anzahl zeilen
$news_rows = mysql_num_rows($Erg);
?>
14 years ago
<table border="0" width="100%" class="border" cellpadding="2" cellspacing="1">
14 years ago
<tr class="contenttopic">
<th width=100 align="left">Datum</th>
<th align="left">Nick</th>
</tr>
<tr class="contenttopic">
<th align="left" colspan=2>Kommentar</th>
</tr>
14 years ago
<?php
for ($n = 0 ; $n < $news_rows ; $n++) {
echo "\t<tr class=\"content\">";
echo "\t\t<td width=100>";
14 years ago
echo mysql_result($Erg, $n, "Datum");
echo "\t\t</td>";
echo "\t\t<td>";
14 years ago
echo UID2Nick(mysql_result($Erg, $n, "UID"));
// avatar anzeigen?
echo DisplayAvatar (mysql_result($Erg, $n, "UID"));
echo "\t\t</td>";
echo "</tr>";
echo "\t<tr class=\"content\">";
echo "\t\t<td colspan=\"2\">";
14 years ago
echo nl2br(mysql_result($Erg, $n, "Text"))."\n";
echo "\t\t</td>";
echo "</tr>";
}
echo "</table>";
?>
14 years ago
<br />
<hr>
<h4>Neuer Kommentar:</h4>
<a name="Neu">&nbsp;</a>
<form action="./news_comments.php" method="GET">
14 years ago
<input type="hidden" name="nid" value="<?php echo $_GET["nid"]; ?>">
<table>
<tr>
<td align="right" valign="top">Text:</td>
<td><textarea name="text" cols="50" rows="10"></textarea></td>
</tr>
</table>
14 years ago
<br />
<input type="submit" value="sichern...">
</form>
14 years ago
<?php
}
else
{
echo "Fehlerhafter Aufruf!";
}
include ("../../../camp2011/includes/footer.php");
?>