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

📄 quick_address_oa_add.php

📁 极限网络智能办公系统 Office Automation V3.0官方100%源代码.
💻 PHP
字号:
<?
/************************************************************************
UebiMiau is a GPL'ed software developed by

 - Aldoir Ventura - aldoir@users.sourceforge.net
 - http://uebimiau.sourceforge.net

Fell free to contact, send donations or anything to me :-)
S鉶 Paulo - Brasil
*************************************************************************/

require("./inc/inc.php");

$listbox = "<select name=contacts size=10 style=\"width: 200px;height:160\" onDblClick=\"Add('to')\">\r\n";
$query = "SELECT * from USER where EMAIL!='' order by USER_NAME";
$query = "select * from ADDRESS where USER_ID='$LOGIN_USER_ID' and EMAIL!='' order by PSN_NAME";
$cursor= exequery($connection,$query);
while($ROW=mysql_fetch_array($cursor))
{
   $PSN_NAME=$ROW["PSN_NAME"];
   $EMAIL=$ROW["EMAIL"];
   $listbox .= "<option value=\"&quot;$PSN_NAME&quot; &lt;$EMAIL&gt;\"> &quot;$PSN_NAME&quot; &lt;$EMAIL&gt;";
}

$listbox .= "</select>";


$smarty->assign("umContacts",$listbox);
$smarty->display("neotech.net/quick_address.htm");

?>

⌨️ 快捷键说明

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