Beispiel #1
0
?>
</textarea></td>
    </tr>
    <tr>
      <td><label for="email">Email: </label></td>
      <td><input type="text" name="email" id="email" value="<?php 
echo $invalidSubmit ? isset($_REQUEST['email']) ? $_REQUEST['email'] : '' : $userEditor->getCurrentUserEmail();
?>
" size="25" maxlength="254" tabindex="<?php 
echo $tabIndex++;
?>
" /></td>
      
      <td><label for="isThankYouSent">Thank You Sent?</label></td>
      <td><input type="checkbox" <?php 
echo $invalidSubmit ? isset($_REQUEST['isThankYouSent']) ? 'checked' : '' : ($userEditor->getCurrentIsThankYouSent() ? 'checked' : '');
?>
 name="isThankYouSent" id="isThankYouSent" tabindex="<?php 
echo $tabIndex++;
?>
" /></td>
    </tr>
    <tr>
      <td><label for="address">Mailing Address: </label></td>
      <td><input type="text" name="address" id="address" value="<?php 
echo $invalidSubmit ? isset($_REQUEST['address']) ? $_REQUEST['address'] : '' : $userEditor->getCurrentAddress();
?>
" placeholder="Address" size="25" maxlength="254" tabindex="<?php 
echo $tabIndex++;
?>
" /></td>