From 65214f378f0ff540ef9c15e9d6dc32a405b413d3 Mon Sep 17 00:00:00 2001 From: cookie Date: Fri, 21 Oct 2005 23:31:23 +0000 Subject: alte unbenoetigte datei entfernt git-svn-id: svn://svn.cccv.de/engel-system@12 29ba0400-6e00-0410-a75a-ca02368028f8 --- nonpublic/news_output.php.old | 90 ------------------------------------------- 1 file changed, 90 deletions(-) delete mode 100755 nonpublic/news_output.php.old (limited to 'nonpublic') diff --git a/nonpublic/news_output.php.old b/nonpublic/news_output.php.old deleted file mode 100755 index fbf97c62..00000000 --- a/nonpublic/news_output.php.old +++ /dev/null @@ -1,90 +0,0 @@ -
"; } -} - - -if (!IsSet($news_begin)) { - $news_begin=0; -} - -if (!IsSet($DISPLAY_NEWS)) { - $DISPLAY_NEWS = 5; -} - -if (($news_begin-$DISPLAY_NEWS) >= 0 ) { - echo "

Die vorherigen $DISPLAY_NEWS News anzeigen...
"; -} - -$SQL = "SELECT * FROM `News` ORDER BY 'ID' DESC LIMIT $news_begin,$DISPLAY_NEWS"; -$Erg = mysql_query($SQL, $con); - -// anzahl zeilen -$news_rows = mysql_num_rows($Erg); - -for ($n = 0 ; $n < $news_rows ; $n++) { - echo "

".mysql_result($Erg, $n, "Betreff")."
\n"; - echo "   ".mysql_result($Erg, $n, "Datum").", "; - echo UID2Nick(mysql_result($Erg, $n, "UID")).""; - // avatar anzeigen? - echo DisplayAvatar (mysql_result($Erg, $n, "UID")); - echo "

\n"; - echo "

".nl2br(mysql_result($Erg, $n, "Text"))."

\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 "

$countcom comments

\n\n"; - - -} -echo "Die nächsten $DISPLAY_NEWS News anzeigen..."; - -?> - -
-
-

Neue News erstellen:

-  - -
- -"> - - - - - - - - - - - - - - - - -
Betreff:
Text:
Treffen:
-
- -
-- cgit v1.2.3-54-g00ecf