<?php include ("./inc/db.php"); include ("./inc/funktion_user.php"); if( isset( $_POST["text"]) && isset( $_POST["betreff"]) && IsSet( $_POST["date"]) ) { if( !isset( $_POST["treffen"])) $_POST["treffen"] = 0; $SQL = "INSERT INTO `News` (`Datum`, `Betreff`, `Text`, `UID`, `Treffen`) "; $SQL.= "VALUES ('". $_POST["date"]. "', '". $_POST["betreff"]. "', '". $_POST["text"]. "', '".$_SESSION['UID']; $SQL.= "', '". $_POST["treffen"]. "');"; $Erg = mysql_query($SQL, $con); if ($Erg == 1) Print_Text(4); } if( !IsSet( $_GET["news_begin"])) $_GET["news_begin"]=0; if( !IsSet( $_GET["DISPLAY_NEWS"])) $_GET["DISPLAY_NEWS"] = 5; $SQL = "SELECT * FROM `News` ORDER BY 'ID' DESC LIMIT ". $_GET["news_begin"]. ",". $_GET["DISPLAY_NEWS"]; $Erg = mysql_query($SQL, $con); // anzahl zeilen $news_rows = mysql_num_rows($Erg); for ($n = 0 ; $n < $news_rows ; $n++) { if (mysql_result($Erg, $n, "Treffen") == 0) { echo "<p class='question'>"; } else { echo "<p class='engeltreffen'>"; } echo "<u>".mysql_result($Erg, $n, "Betreff")."</u><br>\n"; echo " <font size=1>".mysql_result($Erg, $n, "Datum").", "; echo UID2Nick(mysql_result($Erg, $n, "UID"))."</font>"; // avatar anzeigen? echo DisplayAvatar (mysql_result($Erg, $n, "UID")); echo "</p>\n"; echo "<p class='answer'>". ReplaceSmilies(nl2br(mysql_result($Erg, $n, "Text"))) ."</p>\n"; $RefID=mysql_result($Erg, $n, "ID"); $countSQL="SELECT COUNT(*) from news_comments where Refid = '$RefID'"; $countErg = mysql_query($countSQL, $con); $countcom = mysql_result($countErg, 0, "COUNT(*)"); echo "<p class='comment' align='right'><a href=\"./news_comments.php?nid=$RefID\">$countcom comments</a></p>\n\n"; } echo "<div align=\"center\">\n\n"; $rowerg = mysql_query("select * from News", $con); $rows = mysql_num_rows($rowerg); $dis_rows = round (($rows / $DISPLAY_NEWS)+0.5); Print_Text(5); for ($i=1; $i <= $dis_rows; $i++) { if (!((($i * $DISPLAY_NEWS) - $_GET["news_begin"]) == $DISPLAY_NEWS)) { echo "<a href=\"./news.php?news_begin=".(($i*$DISPLAY_NEWS) - $DISPLAY_NEWS)."\">$i</a> "; } else { echo "$i "; } } echo "</div>"; ?> <br> <hr> <h4><?PHP Print_Text(6); ?></h4> <a name="Neu"> </a> <form action="<? echo $ENGEL_ROOT ?>nonpublic/news.php" method="post"> <? // Datum mit uebergeben, um doppelte Eintraege zu verhindern // (Reload nach dem Eintragen!) ?> <input type="hidden" name="date" value="<? echo date("Y-m-d H:i:s"); ?>"> <table> <tr> <td align="right"><?PHP Print_Text(7); ?></td> <td><input type="text" name="betreff" size="60"></td> </tr> <tr> <td align="right"><?PHP Print_Text(8); ?></td> <td><textarea name="text" cols="50" rows="10"></textarea></td> </tr> <? if ($_SESSION['CVS']["nonpublic/newsAddMeting"] == "Y") { ?> <tr> <td align="right"><?PHP Print_Text(9); ?></td> <td><input type="checkbox" name="treffen" size="1" value="1"></td> </tr> <? } ?> </table> <br> <input type="submit" value="<?PHP Print_Text("save"); ?>"> </form>