<form action="" method="POST"> <input type="hidden" name="uid" value="<?php echo $alledaten['uid'];?>"> <input type="hidden" name="email" value="<?php echo $alledaten['emailadresse'];?>"> <table class="table table-striped"> <tr> <td><b>Status</b>:<br /> <select name="status" size="1" style="width: 140px;"> <option value="0" <?php if ($alledaten['status'] == 0) echo'SELECTED';?>>Wartend</option> <option value="1" <?php if ($alledaten['status'] == 1) echo'SELECTED';?>>Freigeschaltet</option> <option value="2" <?php if ($alledaten['status'] == 2) echo'SELECTED';?>>Gesperrt</option> <option value="<?php echo $alledaten['status'];?>">--------------</option> <option value="loeschen">User löschen</option> </select></td> </tr> <tr> <td><br /><b>Hinweistext</b>:<br /> <textarea name="hinweis" style="width: 140px; height: 100px;"><?php echo $alledaten['hinweis'];?></textarea></td> </tr> <tr> <td><br /><b>Mail an User</b>:<br /> <input checked="checked" type="radio" name="send_mail" value="ja" /> Ja <input type="radio" name="send_mail" value="nein" /> Nein</td> </tr> <tr> <td align="center"><br /><input type="submit" name="run[access]" value="» Ändern" /></td> </tr> </table> </form>