如何与人面对面沟通
开发的初步阶段
微软公司软件开发模式简介[转载]
assert的运用
VB函数查询(三)
VB颜色REG设置
GOOGLE搜索招数
常用手册
某女生编的一经典c语言程序
OO 设计过程7 
页面导航:
正文内容:
use_imap.php (前面那个应该是 imap_new.php)
<html>
<head>
<style type="text/css">
<!--
td { font-size:9pt}
a {font-szie:9pt}
body {font-size:9pt}
input {font-size:9pt}
select {font-size:9pt}
-->
</style>
<title>php webmail system</title>
</head>
<body bgcolor="#ffffff">
<?php
include("imap_new.php");
$imap=new myimap;
$imap->hostname="192.168.100.13";
$imap->port=110;
$imap->username="alpha";
$imap->userpwd="enter";
$imap->open();
$imap->checkmailbox();
//$imap->getmailstructure($imap->instream,1);
@$imap->close();
?>
</body>
</html>