Changeset 127 for trunk/user.php


Ignore:
Timestamp:
Feb 23, 2009, 1:18:38 PM (15 years ago)
Author:
george
Message:
  • Opraveno: Další validace kódů XHTML strict.
  • Upraveno: Vzhled tabulek upraven na třídu BaseTable. Zobrazování stylů v prohlížeči IE7.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/user.php

    r92 r127  
    1010  $email = $_POST['email'];
    1111  $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 />');
    1515   
    1616  if(@mail($email, $subject, $text, 'From: '.$Config['Web']['AdminEmail'].'\nReply-To: '.$Config['Web']['AdminEmail'].'\nX-Mailer: PHP/'))
     
    3434  $LineUser = mysql_fetch_array($Database->SQLCommand($Query));
    3535   
    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'].'&action=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'].'&amp;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 />');
    4343  echo('<br />
    4444
    45 <form action="user.php" method="post">
     45<form action="user.php" method="post"><div>
    4646Napsat E-mail:
    4747<input type="text" name="email" value="'.$LineUser['Email'].'" />
     
    4949<input type="text" name="subject" value="Projekt překládání textů WoW" />
    5050<input type="submit" value="Odeslat" />
    51 <br>
     51<br />
    5252<textarea name="text" rows="20" cols="62">
    5353
     
    5656Projekt překládání textů WoW '.$Config['Web']['BaseURL'].'
    5757</textarea>
    58 </form>');
     58</div></form>');
    5959}
    6060
Note: See TracChangeset for help on using the changeset viewer.