Changeset 365 for trunk/user.php
- Timestamp:
- Mar 9, 2010, 11:29:05 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/user.php
r350 r365 10 10 $email = $_POST['email']; 11 11 $subject = $_POST['subject']; 12 echo(' email: <strong>'.$email.'</strong><br />');13 echo(' předmět: <strong>'.$subject.'</strong><br />');14 echo(' text: <strong>'.$text.'</strong><br />');12 echo('Email: <strong>'.$email.'</strong><br />'); 13 echo('Předmět: <strong>'.$subject.'</strong><br />'); 14 echo('Text: <strong>'.$text.'</strong><br />'); 15 15 16 16 if(@mail($email, $subject, $text, 'From: '.$Config['Web']['AdminEmail'].'\nReply-To: '.$Config['Web']['AdminEmail'].'\nX-Mailer: PHP/')) … … 26 26 if(array_key_exists('user', $_GET) and Licence(LICENCE_MODERATOR)) 27 27 { 28 $Query = 'SELECT * FROM ` user` WHERE ID= '.$_GET['user'];29 $ LineUser = mysql_fetch_array($Database->SQLCommand($Query));28 $Query = 'SELECT * FROM `User` WHERE `ID` = '.$_GET['user']; 29 $User = mysql_fetch_array($Database->SQLCommand($Query)); 30 30 31 echo('ID: <strong>'.$ _GET['user'].'</strong><br />');32 echo('Jméno: <strong>'.$ LineUser['user'].'</strong><br />');33 echo('Výchozí jazyk: <strong>'.$LanguageList[$ LineUser['Language']]['Name'].'</strong><br />');34 echo('Poslední připojení: <strong>'.$ LineUser['LastLogin'].'</strong><br />');35 echo('Poslední IP: <strong>'.$ LineUser['LastIP'].'</strong><br />');36 echo('Počet přeložených: <a href="TranslationList.php?user='.$ _GET['user'].'&action=userall" title="Zobrazit Všechny jeho přeložené texty"><strong>'.$LineUser['TranslatedCount'].'</strong></a><br />');37 echo('Email: <strong>'.$ LineUser['Email'].'</strong><br />');31 echo('ID: <strong>'.$User['ID'].'</strong><br />'); 32 echo('Jméno: <strong>'.$User['Name'].'</strong><br />'); 33 echo('Výchozí jazyk: <strong>'.$LanguageList[$User['Language']]['Name'].'</strong><br />'); 34 echo('Poslední připojení: <strong>'.$User['LastLogin'].'</strong><br />'); 35 echo('Poslední IP: <strong>'.$User['LastIP'].'</strong><br />'); 36 echo('Počet přeložených: <a href="TranslationList.php?user='.$User['ID'].'&action=userall" title="Zobrazit Všechny jeho přeložené texty"><strong>'.$User['TranslatedCount'].'</strong></a><br />'); 37 echo('Email: <strong>'.$User['Email'].'</strong><br />'); 38 38 echo('<br /> 39 39 40 40 <form action="user.php" method="post"><div> 41 41 Napsat E-mail: 42 <input type="text" name="email" value="'.$ LineUser['Email'].'" />42 <input type="text" name="email" value="'.$User['Email'].'" /> 43 43 Předmět: 44 44 <input type="text" name="subject" value="Projekt překládání textů WoW" />
Note:
See TracChangeset
for help on using the changeset viewer.