summaryrefslogtreecommitdiff
path: root/nonpublic/wecken.php
diff options
context:
space:
mode:
authorcookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2005-11-06 17:14:25 +0000
committercookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2005-11-06 17:14:25 +0000
commit866c47ec603595e8fe67da5f0e5d162a70b1f7b4 (patch)
treeef2b85462576150f017ba6bd53ace13dc60dc510 /nonpublic/wecken.php
parentfbc8e11b91b0565ae5d23472fc4e5bfc7d879939 (diff)
move files
git-svn-id: svn://svn.cccv.de/engel-system@20 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'nonpublic/wecken.php')
-rwxr-xr-xnonpublic/wecken.php82
1 files changed, 0 insertions, 82 deletions
diff --git a/nonpublic/wecken.php b/nonpublic/wecken.php
deleted file mode 100755
index f7145336..00000000
--- a/nonpublic/wecken.php
+++ /dev/null
@@ -1,82 +0,0 @@
-<?php
-$title = "Himmel";
-$header = "Weckdienst";
-
-include ("./inc/header.php");
-include ("./inc/funktion_user.php");
-
-if( isset($_POST["eintragen"]))
- if( $_POST["eintragen"] == Get_Text("pub_wake_bouton") )
- {
- $SQL = "INSERT INTO Wecken (`UID`, `Date`, `Ort`, `Bemerkung`) ".
- "VALUES (".$_SESSION['UID'].", \"". $_POST["Date"]. "\", \"". $_POST["Ort"].
- "\", \"". $_POST["Bemerkung"]. "\") ";
- $Erg = mysql_query($SQL, $con);
- if ($Erg == 1)
- Print_Text(4);
- }
-if( isset($_GET["eintragen"]))
- if ($_GET["eintragen"] == "loeschen")
- {
- $SQL = "Delete from Wecken where UID = ".$_SESSION['UID']." and ID = ". $_GET["weckID"]." limit 1";
- $Erg = mysql_query($SQL, $con);
- 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"); ?>
-<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>
- </tr>
-
-<?
- $sql = "Select * from Wecken where UID='".$_SESSION['UID']."' order by Date asc";
- $Erg = mysql_query($sql, $con);
- $count = mysql_num_rows($Erg);
-
- for ($i=0; $i < $count; $i++) {
- $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=<?
- echo mysql_result($Erg, $i, "ID")."\">".Get_Text("pub_wake_del"); ?></a></td>
- </tr>
-<?
-
- }
-?>
-</table>
-<br><br>
-<? 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="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="left"><input type="text" name="Ort" value="Tent 23"></td>
- </tr>
- <tr>
- <td align="right"><? 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"); ?>">
-</form>
-<?
-include ("./inc/footer.php");
-?>