2005-09-10 19:25:43 +02:00
|
|
|
<?php
|
2011-06-01 12:13:39 +02:00
|
|
|
$title = "Himmel";
|
|
|
|
$header = "Weckdienst - Liste der zu weckenden Engel";
|
2005-09-10 19:25:43 +02:00
|
|
|
|
2011-06-01 12:13:39 +02:00
|
|
|
include "../../../camp2011/includes/header.php";
|
2005-09-10 19:25:43 +02:00
|
|
|
?>
|
|
|
|
|
2011-06-01 12:13:39 +02:00
|
|
|
<p><?php echo Get_Text("Hello") . $_SESSION['Nick'] . ",<br />\n" . Get_Text("pub_waeckliste_Text1"); ?></p>
|
2005-09-10 19:25:43 +02:00
|
|
|
<table border="0" width="100%" class="border" cellpadding="2" cellspacing="1">
|
2011-06-01 12:13:39 +02:00
|
|
|
<tr class="contenttopic">
|
|
|
|
<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
|
2006-12-04 20:54:51 +01:00
|
|
|
$sql = "SELECT * FROM `Wecken` ORDER BY `Date` ASC";
|
2005-09-10 19:25:43 +02:00
|
|
|
$Erg = mysql_query($sql, $con);
|
|
|
|
$count = mysql_num_rows($Erg);
|
|
|
|
|
2011-06-01 12:13:39 +02:00
|
|
|
for ($i = 0; $i < $count; $i++) {
|
|
|
|
$row = mysql_fetch_row($Erg);
|
2005-09-10 19:25:43 +02:00
|
|
|
?>
|
2011-06-01 12:13:39 +02:00
|
|
|
<tr class="content">
|
|
|
|
<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
|
2005-09-10 19:25:43 +02:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
</table>
|
2011-06-01 12:13:39 +02:00
|
|
|
|
|
|
|
<?php
|
|
|
|
include "../../../camp2011/includes/footer.php";
|
2005-09-10 19:25:43 +02:00
|
|
|
?>
|