Skip to content
Snippets Groups Projects
allgemeines.php 3.5 KiB
Newer Older
isaack's avatar
isaack committed
<form action="" method="POST">
<input type="hidden" name="uid" value="<?php echo $alledaten['uid'];?>">
<input type="hidden" name="alt_werber" value="<?php echo $alledaten['werber'];?>">
<table class="table table-striped">
isaack's avatar
isaack committed
		<td align="right"><b>User-ID</b>:&nbsp;</td>
		<td align="left">&nbsp;<?php echo $alledaten['uid'];?></td>
	</tr>
isaack's avatar
isaack committed
		<td align="right"><b>Nickname</b>:&nbsp;</td>
		<td align="left">&nbsp;<input type="text" name="nickname" value="<?php echo $alledaten['nickname'];?>"></td>
	</tr>
isaack's avatar
isaack committed
		<td align="right"><b>Werber-ID</b>:&nbsp;</td>
		<td align="left">&nbsp;<input type="text" name="werber" value="<?php echo $alledaten['werber'];?>"></td>
	</tr>
isaack's avatar
isaack committed
		<td align="right"><b>Vorname</b>:&nbsp;</td>
		<td align="left">&nbsp;<input type="text" name="vorname" value="<?php echo $alledaten['vorname'];?>"></td>
	</tr>
isaack's avatar
isaack committed
		<td align="right"><b>Nachname</b>:&nbsp;</td>
		<td align="left">&nbsp;<input type="text" name="nachname" value="<?php echo $alledaten['nachname'];?>"></td>
	</tr>
isaack's avatar
isaack committed
		<td align="right"><b>eMailadresse</b>:&nbsp;</td>
		<td align="left">&nbsp;<input type="text" name="emailadresse" value="<?php echo $alledaten['emailadresse'];?>"></td>
	</tr>
	<tr>
		<td align="right"><b>IP/Herkunft</b>:&nbsp;</td>
		<td align="left">&nbsp;<?php echo $alledaten['login_ip'].' / '. geoIP($ausgabe['login_ip']);?></td>
	<tr>
isaack's avatar
isaack committed
		<td align="right"><b>eMail-Empfang</b>:&nbsp;</td>
		<td align="left">&nbsp;<select name="freigabe_fuer" size="1">
		<option value="0" <?php if ($alledaten['freigabe_fuer'] == 0) echo'SELECTED';?>>Kein Empfang</option>
		<option value="1" <?php if ($alledaten['freigabe_fuer'] == 1) echo'SELECTED';?>>Nur Newsletter</option>
		<option value="2" <?php if ($alledaten['freigabe_fuer'] == 2) echo'SELECTED';?>>Nur Paidmails</option>
		<option value="3" <?php if ($alledaten['freigabe_fuer'] == 3) echo'SELECTED';?>>Newsletter / Paidmails</option>
		</select></td>
	</tr>
isaack's avatar
isaack committed
		<td align="right">&nbsp;<b>Bettelsperre</b>:</td>
		<td align="left">&nbsp;
			<select name="bettel_sperre" size="1">
				<option value="0" <?php if ($alledaten['bettel_sperre'] == 0) echo'SELECTED';?>>deaktiviert</option>
				<option value="1" <?php if ($alledaten['bettel_sperre'] == 1) echo'SELECTED';?>>aktiviert</option>
			</select>
		</td>
	</tr>
isaack's avatar
isaack committed
		<td align="right">&nbsp;<b>Banner Sperre</b>:</td>
		<td align="left">&nbsp;
			<select name="forced_sperre" size="1">
				<option value="0" <?php if ($alledaten['forced_sperre'] == 0) echo'SELECTED';?>>deaktiviert</option>
				<option value="1" <?php if ($alledaten['forced_sperre'] == 1) echo'SELECTED';?>>aktiviert</option>
			</select>
		</td>
	</tr>
isaack's avatar
isaack committed
		<td align="right">&nbsp;<b>Chat Sperre</b>:</td>
		<td align="left">&nbsp;
			<select name="chat_sperre" size="1">
				<option value="0" <?php if ($alledaten['chat_sperre'] == 0) echo'SELECTED';?>>deaktiviert</option>
				<option value="1" <?php if ($alledaten['chat_sperre'] == 1) echo'SELECTED';?>>aktiviert</option>
			</select>
		</td>
	</tr>
isaack's avatar
isaack committed
		<td><b>Auszahlungssperre</b></td>
		<td>
			<select name="auszahlung_sperre">
				<option value="0" <?php if ($alledaten['auszahlung_sperre'] == 1) echo'SELECTED';?>>Gesperrt</option>
				<option value="1" <?php if ($alledaten['auszahlung_sperre'] == 0) echo'SELECTED';?>>Freigeschaltet</option>
			</select>
		</td>
	</tr>
isaack's avatar
isaack committed
		<td align="center" colspan="2"><br /><input type="submit" name="profile" value="&raquo; Updaten"><br />&nbsp;</td>
	</tr>
</table>
</form>