當前位置: 首頁>>代碼示例>>PHP>>正文


PHP PrintHidden函數代碼示例

本文整理匯總了PHP中PrintHidden函數的典型用法代碼示例。如果您正苦於以下問題:PHP PrintHidden函數的具體用法?PHP PrintHidden怎麽用?PHP PrintHidden使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了PrintHidden函數的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: formCheck




</script>


<form action="index.php" name="mainForm" method="post" onSubmit="return formCheck(this);">

   <?php 
PrintHidden("page", "background_rule_save");
PrintHidden("savetype", "action");
PrintHidden("action", $action);
PrintHidden("domainid", $domainid);
PrintHidden("accountid", $accountid);
PrintHidden("ruleid", $ruleid);
PrintHidden("actionid", $actionid);
?>
      
   
   
   <div class="tabber">
      <div class="tabbertab">
         <h2><?php 
EchoTranslation("General");
?>
</h2>         
   
      	<table border="0" width="100%" cellpadding="5">
      		<tr>
               <td>
                   <select name="Type" id="Type" onchange="togglePanel()" onkeyup="togglePanel(this)">
開發者ID:TyphoonSB,項目名稱:hmailserver,代碼行數:28,代碼來源:hm_rule_action.php

示例2: EchoTranslation

?>
             
         </form>
      </div>
      
      <div class="tabbertab">
          <h2><?php 
EchoTranslation("Actions");
?>
</h2>      
          
         <form action="index.php" method="post" onSubmit="return formCheck(this);">
           
            <?php 
PrintHidden("page", "backup");
PrintHidden("action", "startbackup");
?>
   
            
            <table border="0" width="100%" cellpadding="5">
         	<tr>
         		<td colspan="1">  
         		   <br/>
         		   <input type="submit" value="Start">
         		</td>
         	</tr>		
         	</table>
         </form>
      </div>
   </div>
        
開發者ID:TyphoonSB,項目名稱:hmailserver,代碼行數:30,代碼來源:hm_backup.php

示例3: EchoTranslation

}
?>

<h1><?php 
EchoTranslation("External account");
?>
</h1>

<form action="index.php" method="post" onSubmit="return formCheck(this);">
	
   <?php 
PrintHidden("page", "background_account_externalaccount_save");
PrintHidden("action", $action);
PrintHidden("faid", $faid);
PrintHidden("domainid", $domainid);
PrintHidden("accountid", $accountid);
?>
   
   <div class="tabber">
      <div class="tabbertab">
          <h2><?php 
EchoTranslation("General");
?>
</h2>            
   
         	<table border="0" width="100%" cellpadding="5">
         		<tr>
         			<td width="30%"><?php 
EchoTranslation("Enabled");
?>
</td>
開發者ID:TyphoonSB,項目名稱:hmailserver,代碼行數:31,代碼來源:hm_account_externalaccount.php

示例4: hmailCheckedIf1

$MaxNumberOfAccountsEnabledChecked = hmailCheckedIf1($MaxNumberOfAccountsEnabled);
$MaxNumberOfAliasesEnabledChecked = hmailCheckedIf1($MaxNumberOfAliasesEnabled);
$MaxNumberOfDistributionListsEnabledChecked = hmailCheckedIf1($MaxNumberOfDistributionListsEnabled);
?>

     
<h1><?php 
EchoTranslation("Domain");
?>
</h1>
<form action="index.php" method="post" onSubmit="return formCheck(this);">

   <?php 
PrintHidden("page", "background_domain_save");
PrintHidden("action", $action);
PrintHidden("domainid", $DomainID);
?>
   
   <div class="tabber">
      <div class="tabbertab">
         <h2><?php 
EchoTranslation("General");
?>
</h2>
   
      	<table border="0" width="100%" cellpadding="5">
            <tr>
      			<td width="30%"><?php 
EchoTranslation("Name");
?>
</td>
開發者ID:TyphoonSB,項目名稱:hmailserver,代碼行數:31,代碼來源:hm_domain.php

示例5: EchoTranslation

$IMAPACLEnabled = $obSettings->IMAPACLEnabled;
$IMAPSASLPlainEnabled = $obSettings->IMAPSASLPlainEnabled;
$IMAPSASLInitialResponseEnabled = $obSettings->IMAPSASLInitialResponseEnabled;
$IMAPMasterUser = $obSettings->IMAPMasterUser;
$IMAPHierarchyDelimiter = $obSettings->IMAPHierarchyDelimiter;
?>

<h1><?php 
EchoTranslation("IMAP");
?>
</h1>

<form action="index.php" method="post" onSubmit="return formCheck(this);">
   <?php 
PrintHidden("page", "imap");
PrintHidden("action", "save");
?>
   
   
   <div class="tabber">
      <div class="tabbertab">
         <h2><?php 
EchoTranslation("General");
?>
</h2>       

      	<table border="0" width="100%" cellpadding="5">
            <tr>
               <th width="30%"></th>
               <th width="70%"></th>
            </tr>   
開發者ID:TyphoonSB,項目名稱:hmailserver,代碼行數:31,代碼來源:hm_imap.php

示例6: hmailGetVar

// Only server can change these settings.
$domainid = hmailGetVar("domainid", 0);
$action = hmailGetVar("action", "");
?>

<h1><?php 
EchoTranslation("Alias");
?>
</h1>

<form action="index.php" method="post" onSubmit="return formCheck(this);">

   <?php 
PrintHidden("page", "background_domain_name_save");
PrintHidden("action", $action);
PrintHidden("domainid", $domainid);
?>
      
   
   
   <div class="tabber">
      <div class="tabbertab">
         <h2><?php 
EchoTranslation("General");
?>
</h2>    
   
      	<table border="0" width="100%" cellpadding="5">
      		<tr>
      			<td width="30%"><?php 
EchoTranslation("Name");
開發者ID:nberardi,項目名稱:hMailServer,代碼行數:31,代碼來源:hm_domain_aliasname.php

示例7: EchoTranslation

<h1><?php 
EchoTranslation("Diagnostics");
?>
</h1>

   <div class="tabber">
      <div class="tabbertab">
          <h2><?php 
EchoTranslation("General");
?>
</h2>            
   
         <form action="index.php" method="post" onSubmit="return formCheck(this);">
            <?php 
PrintHidden("page", "diagnostics");
PrintHidden("action", "performTests");
EchoTranslation("This tool lets you perform diagnostics on your hMailServer installation.");
echo "<br/><br/>";
EchoTranslation("Select the domain you want to run tests on.");
echo "<br/><br/>";
echo '<select name="LocalDomainName">';
$obDomains = $obBaseApp->Domains;
for ($i = 0; $i < $obDomains->Count; $i++) {
    $domain = $obDomains[$i];
    echo '<option value="' . $domain->Name . '">' . $domain->Name . '</option>';
}
echo "</select>";
?>
               
            
            <br/><br/><br/>
開發者ID:nberardi,項目名稱:hMailServer,代碼行數:31,代碼來源:hm_diagnostics.php

示例8: EchoTranslation

    $EmailAddress = "";
    $Description = "";
}
?>

<h1><?php 
EchoTranslation("White listing");
?>
</h1>

<form action="index.php" method="post" onSubmit="return formCheck(this);">

   <?php 
PrintHidden("page", "background_whitelistaddress_save");
PrintHidden("action", "{$action}");
PrintHidden("ID", "{$ID}");
?>
	
   <div class="tabber">
      <div class="tabbertab">
         <h2><?php 
EchoTranslation("General");
?>
</h2>             
   
      	<table border="0" width="100%" cellpadding="5">
      		<tr>
      			<td width="30%"><?php 
EchoTranslation("Description");
?>
</td>
開發者ID:nberardi,項目名稱:hMailServer,代碼行數:31,代碼來源:hm_whitelistaddress.php

示例9: EchoTranslation

    $routeaddress = $obRouteAddress->Address;
}
?>

<h1><?php 
EchoTranslation("Address");
?>
</h1>

<form action="index.php" method="post" onSubmit="return formCheck(this);">

   <?php 
PrintHidden("page", "background_route_address_save");
PrintHidden("action", $action);
PrintHidden("routeid", $routeid);
PrintHidden("routeaddressid", $routeaddressid);
?>
      
   
   <div class="tabber">
      <div class="tabbertab">
         <h2><?php 
EchoTranslation("General");
?>
</h2>          
   
      	<table border="0" width="100%" cellpadding="5">
      		<tr>
      			<td width="30%"><?php 
EchoTranslation("Address");
?>
開發者ID:TyphoonSB,項目名稱:hmailserver,代碼行數:31,代碼來源:hm_route_address.php

示例10: EchoTranslation

    $RejectMessage = $dnsBlackList->RejectMessage;
    $Score = $dnsBlackList->Score;
}
?>

<h1><?php 
EchoTranslation("DNS blacklist");
?>
</h1>

<form action="index.php" method="post" onSubmit="return formCheck(this);">

   <?php 
PrintHidden("page", "background_dnsblacklist_save");
PrintHidden("action", $action);
PrintHidden("id", $id);
?>
      
   
   <div class="tabber">
      <div class="tabbertab">
         <h2><?php 
EchoTranslation("General");
?>
</h2>         
   
      	<table border="0" width="100%" cellpadding="5">
            <tr>
               <th width="30%"></th>
               <th width="70%"></th>
            </tr>           
開發者ID:TyphoonSB,項目名稱:hmailserver,代碼行數:31,代碼來源:hm_dnsblacklist.php

示例11: EchoTranslation

}
?>

<h1><?php 
EchoTranslation("Address");
?>
</h1>

<form action="index.php" method="post" onSubmit="return formCheck(this);">

   <?php 
PrintHidden("page", "background_distributionlist_recipient_save");
PrintHidden("action", $action);
PrintHidden("distributionlistid", $distributionlistid);
PrintHidden("domainid", $domainid);
PrintHidden("recipientid", $recipientid);
?>
      
   
   <div class="tabber">
      <div class="tabbertab">
         <h2><?php 
EchoTranslation("General");
?>
</h2>          
   
      	<table border="0" width="100%" cellpadding="5">
      		<tr>
      			<td width="30%"><?php 
EchoTranslation("Address");
?>
開發者ID:TyphoonSB,項目名稱:hmailserver,代碼行數:31,代碼來源:hm_distributionlist_recipient.php

示例12: formCheck

<?php

if (!defined('IN_WEBADMIN')) {
    exit;
}
?>
   <br/>
   <br/>
   <form action="<?php 
echo $hmail_config['rooturl'];
?>
index.php" method="post" onSubmit="return formCheck(this);" name="mainform">
   
      <?php 
PrintHidden("page", "background_login");
?>

      <br/><br/>
      <div align="center">
         <img src="images/hm_logotype.jpg" border="0" align="middle" alt="">  
      </div>
      
      <table width="250" align="center">
         <tr>
            <td>

            	<br/><br/>
            	<?php 
$error = hmailGetVar("error");
if ($error == "1") {
    EchoTranslation("Incorrect username or password.");
開發者ID:nberardi,項目名稱:hMailServer,代碼行數:31,代碼來源:hm_login.php

示例13: EchoTranslation

<h1><?php 
EchoTranslation("Criteria");
?>
</h1>

<form action="index.php" method="post" onSubmit="return formCheck(this);">

   <?php 
PrintHidden("page", "background_rule_save");
PrintHidden("savetype", "criteria");
PrintHidden("action", $action);
PrintHidden("domainid", $domainid);
PrintHidden("accountid", $accountid);
PrintHidden("ruleid", $ruleid);
PrintHidden("criteriaid", $criteriaid);
?>
      
   
   <div class="tabber">
      <div class="tabbertab">
         <h2><?php 
EchoTranslation("General");
?>
</h2>         
   
      	<table border="0" width="100%" cellpadding="5">
            <tr>
               <th width="30%"></th>
               <th width="70%"></th>
            </tr>            
開發者ID:nberardi,項目名稱:hMailServer,代碼行數:30,代碼來源:hm_rule_criteria.php

示例14: formCheck

         <form action="index.php" method="post" onSubmit="return formCheck(this);">
         
         <?php 
PrintHidden("page", "status");
PrintHidden("action", "control");
?>
         

         <tr>
            <td><?php 
EchoTranslation("Action");
?>
</td>
            <td>
               <?php 
PrintHidden("controlaction", $controlaction);
?>
               <input type="submit" value="<?php 
echo $controlbutton;
?>
">
            </td>
         </tr> 
         </form> 
         <tr>
            <td>
              <i><?php 
EchoTranslation("Server information");
?>
 </i>
            </td>
開發者ID:digitalsoft,項目名稱:hmailserver,代碼行數:31,代碼來源:hm_status.php

示例15: hmailGetVar

$messageid = hmailGetVar("messageid", 0);
$obServerMessage = $obBaseApp->Settings->ServerMessages->ItemByDBID($messageid);
$messagename = $obServerMessage->Name;
$messagetext = $obServerMessage->Text;
?>

<h1><?php 
EchoTranslation("Server message");
?>
</h1>

<form action="index.php" method="post" onSubmit="return formCheck(this);">

   <?php 
PrintHidden("page", "background_servermessage_save");
PrintHidden("messageid", "{$messageid}");
?>
	
   <div class="tabber">
      <div class="tabbertab">
         <h2><?php 
EchoTranslation("General");
?>
</h2>         
   
      	<table border="0" width="100%" cellpadding="5">
      		<tr>
      			<td width="10%"><?php 
EchoTranslation("Name");
?>
</td>
開發者ID:nberardi,項目名稱:hMailServer,代碼行數:31,代碼來源:hm_servermessage.php


注:本文中的PrintHidden函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。