summaryrefslogtreecommitdiff
path: root/www-ssl/nonpublic/wecken.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/wecken.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/wecken.php')
-rwxr-xr-xwww-ssl/nonpublic/wecken.php42
1 files changed, 21 insertions, 21 deletions
diff --git a/www-ssl/nonpublic/wecken.php b/www-ssl/nonpublic/wecken.php
index f7145336..66597dbb 100755
--- a/www-ssl/nonpublic/wecken.php
+++ b/www-ssl/nonpublic/wecken.php
@@ -23,21 +23,21 @@ if( isset($_GET["eintragen"]))
if ($Erg == 1)
Print_Text(4);
}
-?>
-<? echo Get_Text("Hello").$_SESSION['Nick'].",<br>".Get_Text("pub_wake_beschreibung")?>
-<br><br>
-<? echo Get_Text("pub_wake_beschreibung2"); ?>
+echo Get_Text("Hello").$_SESSION['Nick'].",<br>".Get_Text("pub_wake_beschreibung"). "<br><br>\n\n";
+
+
+echo Get_Text("pub_wake_beschreibung2"); ?>
<br><br>
<table border="0" width="100%" class="border" cellpadding="2" cellspacing="1">
<tr class="contenttopic">
- <th align="left"><? echo Get_Text("pub_wake_Datum"); ?></th>
- <th align="left"><? echo Get_Text("pub_wake_Ort"); ?></th>
- <th align="left"><? echo Get_Text("pub_wake_Bemerkung"); ?></th>
- <th align="left"><? echo Get_Text("pub_wake_change"); ?></th>
+ <th align="left"><?PHP echo Get_Text("pub_wake_Datum"); ?></th>
+ <th align="left"><?PHP echo Get_Text("pub_wake_Ort"); ?></th>
+ <th align="left"><?PHP echo Get_Text("pub_wake_Bemerkung"); ?></th>
+ <th align="left"><?PHP echo Get_Text("pub_wake_change"); ?></th>
</tr>
-<?
+<?PHP
$sql = "Select * from Wecken where UID='".$_SESSION['UID']."' order by Date asc";
$Erg = mysql_query($sql, $con);
$count = mysql_num_rows($Erg);
@@ -46,37 +46,37 @@ if( isset($_GET["eintragen"]))
$row=mysql_fetch_row($Erg);
?>
<tr class="content">
- <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"><a href="./wecken.php?eintragen=loeschen&weckID=<?
+ <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>
+ <td align="left"><a href="./wecken.php?eintragen=loeschen&weckID=<?PHP
echo mysql_result($Erg, $i, "ID")."\">".Get_Text("pub_wake_del"); ?></a></td>
</tr>
-<?
-
+<?PHP
}
?>
</table>
<br><br>
-<? echo Get_Text("pub_wake_Text2"); ?><br><br>
+
+<?PHP echo Get_Text("pub_wake_Text2"); ?><br><br>
<form action="wecken.php" method="post">
<table>
<tr>
- <td align="right"><? echo Get_Text("pub_wake_Datum"); ?>:</td>
+ <td align="right"><?PHP echo Get_Text("pub_wake_Datum"); ?>:</td>
<td align="left"><input type="text" name="Date" value="2003-08-05 08:00:00"></td>
</tr>
<tr>
- <td align="right"><? echo Get_Text("pub_wake_Ort"); ?></td>
+ <td align="right"><?PHP echo Get_Text("pub_wake_Ort"); ?></td>
<td align="left"><input type="text" name="Ort" value="Tent 23"></td>
</tr>
<tr>
- <td align="right"><? echo Get_Text("pub_wake_Bemerkung"); ?></td>
+ <td align="right"><?PHP echo Get_Text("pub_wake_Bemerkung"); ?></td>
<td align="left"><textarea name="Bemerkung" rows="5" cols="40">knock knock leo, follow the white rabbit to the blue tent</textarea></td>
</tr>
</table>
-<input type="submit" name="eintragen" value="<? echo Get_Text("pub_wake_bouton"); ?>">
+<input type="submit" name="eintragen" value="<?PHP echo Get_Text("pub_wake_bouton"); ?>">
</form>
-<?
+<?PHP
include ("./inc/footer.php");
?>