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

📄 quick_address.php

📁 极限网络智能办公系统—MYOA26—100%—源程序。
💻 PHP
字号:
<?php

require( "./inc/inc.php" );
$filename = $userfolder."_infos/addressbook.ucf";
$myfile = $UM->_read_file( $filename );
if ( $myfile != "" )
{
	$addressbook = unserialize( base64_decode( $myfile ) );
}
array_qsort2( $addressbook, "name" );
$listbox = "<select name=contacts size=10 style=\"width: 200px;height:160\" onDblClick=\"Add('to')\">\r\n";
$i = 0;
for ( ;	$i < count( $addressbook );	++$i	)
{
	$line = $addressbook[$i];
	$name = htmlspecialchars( trim( $line['name'] ) );
	$email = htmlspecialchars( trim( $line['email'] ) );
	$listbox .= "<option value=\"&quot;{$name}&quot; &lt;{$email}&gt;\"> &quot;{$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 + -