summaryrefslogtreecommitdiff
path: root/www-ssl/nonpublic/waeckliste.php
diff options
context:
space:
mode:
authorcookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2005-11-30 22:13:38 +0000
committercookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2005-11-30 22:13:38 +0000
commitbf88f9c69beddd3d0559648ec9db37f34bd64300 (patch)
treebdb7ee515c0325cc3ab18e47c03768ff88655836 /www-ssl/nonpublic/waeckliste.php
parentf53f4bf0c64ef14cfac882a98e3f6a2cd883c973 (diff)
aus gegebenen anlass, update von <? auf <?PHP
git-svn-id: svn://svn.cccv.de/engel-system@99 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'www-ssl/nonpublic/waeckliste.php')
-rwxr-xr-xwww-ssl/nonpublic/waeckliste.php27
1 files changed, 13 insertions, 14 deletions
diff --git a/www-ssl/nonpublic/waeckliste.php b/www-ssl/nonpublic/waeckliste.php
index f8b9984c..b2c2e420 100755
--- a/www-ssl/nonpublic/waeckliste.php
+++ b/www-ssl/nonpublic/waeckliste.php
@@ -8,18 +8,18 @@ include ("./inc/header.php");
?>
-<? echo Get_Text("Hello"). $_SESSION['Nick'].",<br>\n".
- Get_Text("pub_waeckliste_Text1")?>
+<?PHP echo Get_Text("Hello"). $_SESSION['Nick'].",<br>\n".
+ Get_Text("pub_waeckliste_Text1")?>
<br><br>
<table border="0" width="100%" class="border" cellpadding="2" cellspacing="1">
<tr class="contenttopic">
- <th align="left"><? echo Get_Text("pub_waeckliste_Nick");?></th>
- <th align="left"><? echo Get_Text("pub_waeckliste_Datum");?></th>
- <th align="left"><? echo Get_Text("pub_waeckliste_Ort");?></th>
- <th align="left"><? echo Get_Text("pub_waeckliste_Comment");?></th>
+ <th align="left"><?PHP echo Get_Text("pub_waeckliste_Nick");?></th>
+ <th align="left"><?PHP echo Get_Text("pub_waeckliste_Datum");?></th>
+ <th align="left"><?PHP echo Get_Text("pub_waeckliste_Ort");?></th>
+ <th align="left"><?PHP echo Get_Text("pub_waeckliste_Comment");?></th>
</tr>
-<?
+<?PHP
$sql = "Select * from Wecken order by Date asc";
$Erg = mysql_query($sql, $con);
$count = mysql_num_rows($Erg);
@@ -28,16 +28,15 @@ include ("./inc/header.php");
$row=mysql_fetch_row($Erg);
?>
<tr class="content">
- <td align="left"><? echo UID2Nick(mysql_result($Erg, $i, "UID")); ?> </td>
- <td align="left"><? echo mysql_result($Erg, $i, "Date"); ?> </td>
- <td align="left"><? echo mysql_result($Erg, $i, "Ort"); ?> </td>
- <td align="left"><? echo mysql_result($Erg, $i, "Bemerkung"); ?> </td>
+ <td align="left"><?PHP echo UID2Nick(mysql_result($Erg, $i, "UID")); ?> </td>
+ <td align="left"><?PHP echo mysql_result($Erg, $i, "Date"); ?> </td>
+ <td align="left"><?PHP echo mysql_result($Erg, $i, "Ort"); ?> </td>
+ <td align="left"><?PHP echo mysql_result($Erg, $i, "Bemerkung"); ?> </td>
</tr>
-<?
-
+<?PHP
}
?>
</table>
-<?
+<?PHP
include ("./inc/footer.php");
?>