diff options
author | Moritz helios Rudert <helios@planetcyborg.de> | 2011-06-01 12:13:39 +0200 |
---|---|---|
committer | Moritz helios Rudert <helios@planetcyborg.de> | 2011-06-01 12:13:39 +0200 |
commit | 75448045cfe70054c8f4bae1bcfaf9bb0f70d330 (patch) | |
tree | 6a4d3d35019cdf933c1816e8522dc5d2557f5238 /www-ssl/nonpublic/wecken.php | |
parent | 12e0b0d809c29d435a247798d7318cc9835980ea (diff) |
fixes
Diffstat (limited to 'www-ssl/nonpublic/wecken.php')
-rw-r--r--[-rwxr-xr-x] | www-ssl/nonpublic/wecken.php | 102 |
1 files changed, 51 insertions, 51 deletions
diff --git a/www-ssl/nonpublic/wecken.php b/www-ssl/nonpublic/wecken.php index 67e32e28..164a4bb0 100755..100644 --- a/www-ssl/nonpublic/wecken.php +++ b/www-ssl/nonpublic/wecken.php @@ -1,81 +1,81 @@ <?php -$title = "Himmel"; -$header = "Weckdienst"; + $title = "Himmel"; + $header = "Weckdienst"; -include ("../../../camp2011/includes/header.php"); + include "../../../camp2011/includes/header.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); - } + 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); -echo Get_Text("Hello").$_SESSION['Nick'].",<br>".Get_Text("pub_wake_beschreibung"). "<br><br>\n\n"; + 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 "<p>" . Get_Text("Hello") . $_SESSION['Nick'] . ",<br />" . Get_Text("pub_wake_beschreibung") . "</p>\n\n"; + echo Get_Text("pub_wake_beschreibung2"); +?> -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"><?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 class="contenttopic"> + <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"; + +<?php + $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); + $row = mysql_fetch_row($Erg); ?> - <tr class="content"> - <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 + <tr class="content"> + <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> +<br /><br /> -<?PHP 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"><?PHP echo Get_Text("pub_wake_Datum"); ?>:</td> - <td align="left"><input type="text" name="Date" value="2003-08-05 08:00:00"></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"><?PHP echo Get_Text("pub_wake_Ort"); ?></td> - <td align="left"><input type="text" name="Ort" value="Tent 23"></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"><?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> + <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="<?PHP echo Get_Text("pub_wake_bouton"); ?>"> +<input type="submit" name="eintragen" value="<?php echo Get_Text("pub_wake_bouton"); ?>" /> </form> -<?PHP +<?php include ("../../../camp2011/includes/footer.php"); ?> |