You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			85 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			85 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
| <?php
 | |
| /*
 | |
|  * Created on 07.03.2009
 | |
|  *
 | |
|  * @copyright (c) 2009 animegame.eu
 | |
|  * @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public Licence
 | |
|  *
 | |
|  */
 | |
| 
 | |
| include_once(ROOT_PATH.'/include/config.inc.php');
 | |
| include_once(ROOT_PATH.'/include/char.inc.php');
 | |
| include_once (ROOT_PATH . '/include/parse.inc.php');
 | |
| include_once (ROOT_PATH . '/include/sqlwrapper.inc.php');
 | |
| // GET-Section
 | |
| // Kritisch (SQL-Injections)
 | |
| $c_ware = validateUnsignedInteger($_GET['c_ware'], null);
 | |
| 
 | |
| //Unkritisch
 | |
| $charm = $_GET['charm'];
 | |
| 
 | |
| if($charm == 1) {
 | |
| 	$chars = getCharsOfUser($user_ida['id']);
 | |
| 
 | |
| 	foreach($chars as $char) {
 | |
| 		$c_ware = validateUnsignedInteger($_GET['c_ware_'.$char['id']], null);
 | |
| 		db_query('UPDATE chars SET clan_train='.$c_ware.' WHERE id='.$char['id'].' AND besitzer='.$user_ida['id']);
 | |
| 	}
 | |
| }
 | |
| 
 | |
| 
 | |
| ?>
 | |
| <html>
 | |
| 
 | |
| 
 | |
| <body>
 | |
| <form action="index.php" method="GET">
 | |
| 	<input type="hidden" name="as" value="clan/c_ware" />
 | |
| 	<input type="hidden" name="charm" value="1" />
 | |
| 
 | |
| <table cellpadding="0" cellspacing="0" width="100%" height="127">
 | |
| 	<!-- MSTableType="layout" -->
 | |
| 	<tr>
 | |
| 		<td valign="top" height="31" colspan="2">
 | |
| 		<p align="center"><b>Clan Items</b></td>
 | |
| 	</tr>
 | |
| <?php 
 | |
| 	$chars = getCharsOfUser($user_ida['id'], false);
 | |
| 	foreach($chars as $char) {
 | |
| 		$clan_items = db_query("SELECT ci.name, ci.type, cw.id, 1/(1+exp(3-$char[level]/12)) * nutzung as nutzkosten FROM clan_ware cw LEFT JOIN clan_item ci ON(cw.item_id=ci.id) WHERE cw.clan='$user_ida[clan]'");
 | |
| 		
 | |
| 		?>
 | |
| 			<tr>
 | |
| 				<td height="25" width="260" valign="middle" align="center">
 | |
| 				Raum für <?php echo $char['name'] ; ?>
 | |
| 				</td>
 | |
| 				<td height="25" width="273" valign="middle">
 | |
| 				<select id="input" name="c_ware_<?php echo $char['id']; ?>">
 | |
| 					<option value="0">Wähle Kampf Raum</option>
 | |
| 					<?php
 | |
| 					while($row = mysqli_fetch_array($clan_items)) {
 | |
| 						$save="";
 | |
| 						if($row['id'] == $char['clan_train']) {
 | |
| 							$save = 'Selected';
 | |
| 						}
 | |
| 						if($row['type'] == 'Raum') {
 | |
| 							echo "<option value='$row[id]' $save>$row[name] (".displayMoney($row['nutzkosten']).") </option>";
 | |
| 						}
 | |
| 					}
 | |
| 					?>
 | |
| 				</select>
 | |
| 				</td>
 | |
| 			</tr>
 | |
| 		<?php
 | |
| 	}
 | |
| ?>
 | |
| 	<tr>
 | |
| 		<td height="19" width="260" valign="top"> </td>
 | |
| 		<td height="19" width="273"> <input id="input" type=submit value="Speichern"></form></td>
 | |
| 	</tr>
 | |
| </table>
 | |
| </form>
 | |
| </body>
 | |
| 
 | |
| </html>
 |