Changeset 127 for trunk/team.php
- Timestamp:
- Feb 23, 2009, 1:18:38 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/team.php
r124 r127 6 6 7 7 if (array_key_exists('name', $_POST)) { 8 $ID = $Database->SQLCommand('INSERT INTO ` wowpreklad`.`team` (`name` ,`description` )8 $ID = $Database->SQLCommand('INSERT INTO `team` (`name` ,`description` ) 9 9 VALUES ( \''.$_POST['name'].'\', \''.$_POST['description'].'\');'); 10 10 … … 23 23 $ID = $Database->SQLCommand('UPDATE user SET team = '.$_GET['gointeam'].' WHERE ID = '.$_SESSION['UserID']); 24 24 25 echo('<strong>V ztoupil jsi do týmu</strong><br /><br />');25 echo('<strong>Vstoupil jsi do týmu</strong><br /><br />'); 26 26 } 27 27 28 28 29 echo('<strong>Seznam překladatelský týmů:</strong><br />');29 echo('<strong>Seznam překladatelských týmů:</strong><br />'); 30 30 31 31 if(array_key_exists('Page', $_GET)) $_SESSION['Page'] = $_GET['Page']; … … 49 49 <th><a href="?Order=XP&Desc='.$desc.'">Úroveň</a></th> 50 50 */ 51 echo(' 52 <tr><th><a href="?Order=name&Desc='.$desc.'">Jméno</a></th> 51 echo('<tr><th><a href="?Order=name&Desc='.$desc.'">Jméno</a></th> 53 52 <th><a href="?Order=numberuser&Desc='.$desc.'">Počet členů</a></th> 54 <th><a href="?Order=description&Desc='.$desc.'">Popis</a></th> 55 '); 53 <th><a href="?Order=description&Desc='.$desc.'">Popis</a></th>'); 56 54 if(Licence(LICENCE_USER)) echo ('<th>Uživatelské akce</th>'); 57 55 echo ('</tr>'); … … 66 64 '); 67 65 if(Licence(LICENCE_USER)) echo ('<td><a href="?gointeam='.$Line['ID'].'">Vztoupit do týmu</a></td>'); 66 echo('</tr>'); 68 67 } 69 68 echo('</table>');
Note:
See TracChangeset
for help on using the changeset viewer.