Guten Tag,
ich habe das Problem, dass mein Beschwerdensystem nicht funktioniert.
Ich erhalte diese Fehlermeldung:
ZitatNotice: Undefined index: fallnr in /var/www/vhosts/00348.stprof.eu/httpdocs/viewcomplaint.php on line 181
Mit diesem Code:
HTML
<table class="table table-hover">
<thead>
<tr>
<th>Fall</th>
<th>Kläger</th>
<th>Grund</th>
<th>Datum</th>
<th>Status</th>
</tr>
</thead>
<?php
$ownname = $_SESSION['name'];
$query = "SELECT * FROM `ucp_beschwerden` WHERE `beschuldigter`='$ownname'";
$result = mysql_query($query);
while ( $row = mysql_fetch_assoc($result) )
{
if($row['status'] == 0)
{
?><tbody>
<tr>
<form action="viewcomplaint.php" method="POST">
<td><a href="viewcomplaint.php" name="fallnr" id="fallnr">Fall Nr. (<?php echo $row['id']; ?>)</a></td>
<input type="hidden" class="form-control" id="fallnr" name="fallnr" value="<?php $row['id'] ?>"></input>
<td><?php echo $row['klager']; ?></td>
<td><?php echo $row['reason']; ?></td>
<td><?php echo $row['createdate']; ?></td>
<td><?php echo"Beschwerde ist offen"; ?></td>
</form>
</tr>
</tbody> <?php
}
else if($row['status'] == 1)
{
?><tbody>
<tr>
<form action="viewcomplaint.php" method="POST">
<td><a href="viewcomplaint.php" name="fallnr" id="fallnr">Fall Nr. (<?php echo $row['id']; ?>)</a></td>
<input type="hidden" class="form-control" id="fallnr" name="fallnr" value="<?php $row['id'] ?>"></input>
<td><?php echo $row['klager']; ?></td>
<td><?php echo $row['reason']; ?></td>
<td><?php echo $row['createdate']; ?></td>
<td><?php echo"Beschwerde ist abgeschlossen"; ?></td>
</form>
</tr>
</tbody><?php
}
}
?></table>
Alles anzeigen
Der Fehlercode kommt hier:
Habt ihr eine Idee?