quick_address_oa_add.php

来自「极限网络智能办公系统 - Office Automation 2008 官方10」· PHP 代码 · 共 19 行

PHP
19
字号
<?php
 

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 + -
显示快捷键?