2005-09-10 19:25:43 +02:00
|
|
|
<?php
|
|
|
|
$title = "Himmel";
|
|
|
|
$header = "Weckdienst";
|
|
|
|
|
|
|
|
include ("./inc/header.php");
|
|
|
|
|
2005-11-06 01:44:48 +01:00
|
|
|
if( isset($_POST["eintragen"]))
|
|
|
|
if( $_POST["eintragen"] == Get_Text("pub_wake_bouton") )
|
|
|
|
{
|
2006-12-04 20:54:51 +01:00
|
|
|
$SQL = "INSERT INTO `Wecken` (`UID`, `Date`, `Ort`, `Bemerkung`) ".
|
|
|
|
"VALUES ('". $_SESSION['UID']. "', '". $_POST["Date"]. "', '". $_POST["Ort"]. "', ".
|
|
|
|
"'". $_POST["Bemerkung"]. "')";
|
2005-11-06 01:44:48 +01:00
|
|
|
$Erg = mysql_query($SQL, $con);
|
|
|
|
if ($Erg == 1)
|
|
|
|
Print_Text(4);
|
|
|
|
}
|
|
|
|
if( isset($_GET["eintragen"]))
|
|
|
|
if ($_GET["eintragen"] == "loeschen")
|
|
|
|
{
|
2006-12-04 20:54:51 +01:00
|
|
|
$SQL = "DELETE FROM `Wecken` WHERE `UID`='". $_SESSION['UID']. "' AND `ID`='". $_GET["weckID"]."' LIMIT 1";
|
2005-11-06 01:44:48 +01:00
|
|
|
$Erg = mysql_query($SQL, $con);
|
|
|
|
if ($Erg == 1)
|
|
|
|
Print_Text(4);
|
|
|
|
}
|
2005-09-10 19:25:43 +02:00
|
|
|
|
2005-11-30 23:13:38 +01:00
|
|
|
echo Get_Text("Hello").$_SESSION['Nick'].",<br>".Get_Text("pub_wake_beschreibung"). "<br><br>\n\n";
|
|
|
|
|
|
|
|
|
|
|
|
echo Get_Text("pub_wake_beschreibung2"); ?>
|
2005-09-10 19:25:43 +02:00
|
|
|
<br><br>
|
|
|
|
<table border="0" width="100%" class="border" cellpadding="2" cellspacing="1">
|
|
|
|
<tr class="contenttopic">
|
2005-11-30 23:13:38 +01:00
|
|
|
<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>
|
2005-09-10 19:25:43 +02:00
|
|
|
</tr>
|
|
|
|
|
2005-11-30 23:13:38 +01:00
|
|
|
<?PHP
|
2006-12-04 20:54:51 +01:00
|
|
|
$sql = "SELECT * FROM `Wecken` WHERE `UID`='". $_SESSION['UID']. "' ORDER BY `Date` ASC";
|
2005-09-10 19:25:43 +02:00
|
|
|
$Erg = mysql_query($sql, $con);
|
|
|
|
$count = mysql_num_rows($Erg);
|
|
|
|
|
|
|
|
for ($i=0; $i < $count; $i++) {
|
|
|
|
$row=mysql_fetch_row($Erg);
|
|
|
|
?>
|
|
|
|
<tr class="content">
|
2005-11-30 23:13:38 +01:00
|
|
|
<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
|
2005-09-10 19:25:43 +02:00
|
|
|
echo mysql_result($Erg, $i, "ID")."\">".Get_Text("pub_wake_del"); ?></a></td>
|
|
|
|
</tr>
|
2005-11-30 23:13:38 +01:00
|
|
|
<?PHP
|
2005-09-10 19:25:43 +02:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
</table>
|
|
|
|
<br><br>
|
2005-11-30 23:13:38 +01:00
|
|
|
|
|
|
|
<?PHP echo Get_Text("pub_wake_Text2"); ?><br><br>
|
2005-09-10 19:25:43 +02:00
|
|
|
|
|
|
|
<form action="wecken.php" method="post">
|
|
|
|
<table>
|
|
|
|
<tr>
|
2005-11-30 23:13:38 +01:00
|
|
|
<td align="right"><?PHP echo Get_Text("pub_wake_Datum"); ?>:</td>
|
2005-09-10 19:25:43 +02:00
|
|
|
<td align="left"><input type="text" name="Date" value="2003-08-05 08:00:00"></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2005-11-30 23:13:38 +01:00
|
|
|
<td align="right"><?PHP echo Get_Text("pub_wake_Ort"); ?></td>
|
2005-09-10 19:25:43 +02:00
|
|
|
<td align="left"><input type="text" name="Ort" value="Tent 23"></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2005-11-30 23:13:38 +01:00
|
|
|
<td align="right"><?PHP echo Get_Text("pub_wake_Bemerkung"); ?></td>
|
2005-09-10 19:25:43 +02:00
|
|
|
<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>
|
2005-11-30 23:13:38 +01:00
|
|
|
<input type="submit" name="eintragen" value="<?PHP echo Get_Text("pub_wake_bouton"); ?>">
|
2005-09-10 19:25:43 +02:00
|
|
|
</form>
|
2005-11-30 23:13:38 +01:00
|
|
|
<?PHP
|
2005-09-10 19:25:43 +02:00
|
|
|
include ("./inc/footer.php");
|
|
|
|
?>
|