<?php
/*
 *
 * @copyright (c) 2010 animegame.eu
 * @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public Licence
 *
 */

include_once ($_SERVER['DOCUMENT_ROOT'] . 'ag/include/designfunctions.inc.php');
include_once ($_SERVER['DOCUMENT_ROOT'] . 'ag/include/fehlerausgabe.inc.php');
include_once ($_SERVER['DOCUMENT_ROOT'] . 'ag/include/parse.inc.php');

$char_id = validateUnsignedInteger($_GET['char_id'], null);
if ($char_id == null) {
	include ($_SERVER['DOCUMENT_ROOT'] . 'ag/char_index.php');
	exit;
} else {
	if (!isUserOwnerOf($user_ida['id'],$char_id)) {
		displayErrorMessage(NULL, 'Dieser Charakter geh&ouml;rt nicht dir.', displayHistoryBackLink());
		exit;
	}
	$use = mysql_query('SELECT a.name, l.benutzt FROM lernen l LEFT JOIN attacken a ON(a.id=l.at_id) WHERE l.besitzer='.$char_id.' ORDER BY l.id');
?>
<table border="0" width="480" height="83">
	<tr>
		<td height="50" width="480" colspan="2">
		<p align="center"><b>Technik System</b></td>
	</tr>
	<?php

	while ($row = mysql_fetch_array($use)) {
?>
	<tr>
		<td height="25" width="152"><b>&nbsp; <?php echo $row[name]; ?></b></td>
		<td height="25" width="312">&nbsp;<b><font color=#0000ff><?php echo $row[benutzt]; ?></font></b> mal im Kampf
		eingesetzt.</td>
	</tr>
	<?php
	}
?>
</table>
<?php

}
?>