quick_address_oa_add.php

来自「极限网络智能办公系统 Office Automation V3.0官方100%源」· PHP 代码 · 共 31 行

PHP
31
字号
<?
/************************************************************************
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 + =
减小字号Ctrl + -
显示快捷键?