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

📄 left.inc.php

📁 CRM 不仅仅是一个管理名词和管理概念
💻 PHP
字号:
<?
/**
  *
  * Package Monitor Page
  *
  * OsoonCRM Project
  * Copyright 2003-2004 (c)
  * http://osooncrm.cosoft.org.cn/
  */
?> 

<table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%">
  <tr> 
    <td bgcolor="#F1F0E7" width="200" valign="top" align=center> <br>
      <table width="144" border="0" cellspacing="0" cellpadding="0" align="center">
        <tr>
          <td><img src="images/left_account_top.gif" width="144" height="20"></td>
        </tr>
        <tr bgcolor="#E4E2CF"> 
          <td> 
            <form method="post" action="account_search.php">
              <table width="98%" border="0" cellspacing="0" cellpadding="5">
                <tr>
                  <td>地区:</td>
                </tr>
                <tr> 
                  <td> 
                    <select name="Area">
                    <option value="%">所有客户</option>
                <?
                include "include/array.inc.php";
                $leng=count($array_crm_area);
                for($i=1;$i<$leng+1;$i++)
                {
                ?>
                  <option value="<? echo $array_crm_area[$i] ?>"><? echo $array_crm_area[$i] ?></option>
                <?
                }
                ?>
                </select>
                  </td>
                </tr>
                <tr> 
                  <td>客户名称:</td>
                </tr>
                <tr> 
                  <td> 
                    <input type="text" name="Account_name" size="20">
                  </td>
                </tr>
                <tr> 
                  <td> 
                    <input type="submit" name="Submit" value="立即检索">
                  </td>
                </tr>
              </table>
            </form>
          </td>
        </tr>
      </table>
      <br>
      <table width="144" border="0" cellspacing="0" cellpadding="0" align="center">
        <tr> 
          <td><img src="images/left_contact_top.gif" width="144" height="20"></td>
        </tr>
        <tr bgcolor="#E4E2CF"> 
          <td> 
            <form method="post" action="contact_search.php">
              <table width="98%" border="0" cellspacing="0" cellpadding="5">
                <tr> 
                  <td> 
                    联系人姓名
                  </td>
                </tr>
                <tr> 
                  <td> 
                    <input type="text" name="contactname" size="20">
                  </td>
                </tr>
                <tr> 
                  <td> 
                    <input type="submit" name="Submit2" value="立即检索">
                  </td>
                </tr>
              </table>
            </form>
			</td>
        </tr>
      </table>
      <br>
      <table width="144" border="0" cellspacing="0" cellpadding="0" align="center">
        <tr> 
          <td><img src="images/left_project_top.gif" width="144" height="20"></td>
        </tr>
        <tr bgcolor="#E4E2CF"> 
          <td> 
            <table width="100%" border="0" cellspacing="0" cellpadding="5">
              <form method="post" action="project_search.php" name="pf">
                <tr> 
                  <td> 
                    开始日期: <input type="text" name="BeginTime" size="10" value="0000-00-00" onclick="this.value=''">
                  </td>
                </tr>
                <tr> 
                  <td> 
                    项目创建者:
					  <select name="CreateID">
					  	<option value="">-全部-</option>
<?
	$sql_tmp = "select uid,name from $tbl_crm_user where uid in ($list_crm_uid)";
	echo $sql_tmp;
	$res_tmp = mysql_query($sql_tmp);
	while ($row_tmp=@mysql_fetch_array($res_tmp))
	{
		echo "<option value=\"$row_tmp[0]\">$row_tmp[1]</option>";
	}
	unset($sql_tmp);
?>
					  </select>
                  </td>
                </tr>
                <tr>  
                  <td> 
                    项目名称: <input type="text" name="ProjectName" size="10">
                  </td>
                </tr>
                <tr> 
                  <td> 
                    <input type="submit" name="Submit" value="立即检索" style="width:60"> 
                    &nbsp;
                    <input type="reset" name="reset" value="重新输入" style="width:60">
                  </td>
                </tr>
              </form>
            </table>
          </td>
        </tr>
      </table>
      <p>&nbsp;</p>
    </td>
    <td bgcolor="#B79648" width=1 background="images/left_line.gif"></td>
  </tr> 
</table>

⌨️ 快捷键说明

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