⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gen_confirm.php

📁 通达OA部分源代码
💻 PHP
字号:
<?php
function main()
{

?>
<table width="80%" border="0" align="center" cellpadding="1" cellspacing="0">
  <tr> 
    <td></td>
  </tr>
  <tr height="20"> 
    <td ></td>
  </tr><?php
  if(isset($_REQUEST["errmsg"])&&($_REQUEST["errmsg"]<>""))
  {
  ?><tr>
    <td>        
      <table width="100%" border="0" align="center" cellpadding="5" cellspacing="0" class="msgstyle">
        <tr align="left"> 
          <td colspan="2"><strong><?php echo $_REQUEST["errmsg"];?></strong></td>
        </tr>
        <?php
		if(isset($_REQUEST["err"])&&($_REQUEST["err"]<>""))
		{
		 $return_path=$_REQUEST["err"].".php"; 
		
        ?>
        <tr> 
          <td width="3%" align="center">&nbsp;</td>
          <td width="97%" align="left"> Click <a href="<?php echo $return_path;?>">here</a> 
            to try again.</td>
        </tr>
        <?php
		} 
		if(isset($_REQUEST["sb_type"])&&($_REQUEST["sb_type"]<>0))
  		{
  		switch($_REQUEST["sb_type"])
		{
			case 1:
				$return_path="view_offer.php?id=".$_REQUEST["id"];
				break;
			case 2:
				$return_path="view_offer_buy.php?id=".$_REQUEST["id"];
				break;
			case 3:
				$return_path="view_product.php?id=".$_REQUEST["id"];
				break;
			case 4:
				$return_path="view_profile.php?id=".$_REQUEST["id"];
				break;
		}

  ?>
        <tr> 
          <td align="center">&nbsp;</td>
          <td align="left">Click <a href="<?php echo $return_path;?>">here</a> 
            to view offer/profile detail page. </td>
        </tr>
        <?php
  }

        ?>
        <tr> 
          <td align="center">&nbsp;</td>
          <td align="left"> Click <a href="cat_sell.php">here</a> to view sell 
            offers. </td>
        </tr>
        <tr> 
          <td align="center">&nbsp;</td>
          <td align="left">Click <a href="cat_buy.php">here</a> to view buy offers. 
          </td>
        </tr>
        <tr> 
          <td align="center">&nbsp;</td>
          <td align="left">Click <a href="cat_products.php">here</a> to view product 
            catalogs offers. </td>
        </tr>
        <?php
		if(isset($_SESSION["sbbleads_userid"]))
		{
		if(isset($_SESSION["offer_count"]))
		{
        ?>
        <tr>
          <td align="center">&nbsp;</td>
          <td align="left">Click <a href="cart_items.php">here</a> to view inquiry 
            basket. </td>
        </tr><?
		}
        ?><tr> 
          <td align="center">&nbsp;</td>
          <td align="left">Click <a href="userhome.php">here</a> to go to member 
            area. </td>
        </tr>
        <tr> 
          <td align="center">&nbsp;</td>
          <td align="left">Click <a href="logout.php">here</a> to logout. </td>
        </tr>
        <?
		}
      ?>
      </table>
      
    </td>
  </tr><?php
  }
  ?><tr> 
    <td> <div align="center"> </div></td>
  </tr>
</table>
  
<? 
}// end of main()
include "template.php";
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -