Changeset 127 for trunk/user.php
- Timestamp:
- Feb 23, 2009, 1:18:38 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/user.php
r92 r127 10 10 $email = $_POST['email']; 11 11 $subject = $_POST['subject']; 12 echo('email: < b>'.$email.'</b><br />');13 echo('předmět: < b>'.$subject.'</b><br />');14 echo('text: < b>'.$text.'</b><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/')) … … 34 34 $LineUser = mysql_fetch_array($Database->SQLCommand($Query)); 35 35 36 echo('ID: < b>'.$_GET['user'].'</b><br />');37 echo('Jméno: < b>'.$LineUser['user'].'</b><br />');38 echo('Výchozí jazyk: < b>'.$LineUser['Language'].'</b><br />');39 echo('Poslední připojení: < b>'.$LineUser['LastLogin'].'</b><br />');40 echo('Poslední IP: < b>'.$LineUser['LastIP'].'</b><br />');41 echo('Počet přeložených: <a href="TranslationList.php?user='.$_GET['user'].'&a ction=userall" title="Zobrazit Všechny jeho přeložené texty"><b>'.$LineUser['NumberTranslate'].'</b></a><br />');42 echo('Email: < b>'.$LineUser['Email'].'</b><br />');36 echo('ID: <strong>'.$_GET['user'].'</strong><br />'); 37 echo('Jméno: <strong>'.$LineUser['user'].'</strong><br />'); 38 echo('Výchozí jazyk: <strong>'.$LineUser['Language'].'</strong><br />'); 39 echo('Poslední připojení: <strong>'.$LineUser['LastLogin'].'</strong><br />'); 40 echo('Poslední IP: <strong>'.$LineUser['LastIP'].'</strong><br />'); 41 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['NumberTranslate'].'</strong></a><br />'); 42 echo('Email: <strong>'.$LineUser['Email'].'</strong><br />'); 43 43 echo('<br /> 44 44 45 <form action="user.php" method="post"> 45 <form action="user.php" method="post"><div> 46 46 Napsat E-mail: 47 47 <input type="text" name="email" value="'.$LineUser['Email'].'" /> … … 49 49 <input type="text" name="subject" value="Projekt překládání textů WoW" /> 50 50 <input type="submit" value="Odeslat" /> 51 <br >51 <br /> 52 52 <textarea name="text" rows="20" cols="62"> 53 53 … … 56 56 Projekt překládání textů WoW '.$Config['Web']['BaseURL'].' 57 57 </textarea> 58 </ form>');58 </div></form>'); 59 59 } 60 60
Note:
See TracChangeset
for help on using the changeset viewer.