代码如下: ?php class DB{ var $host_addr = "localhost"; var $host_user = "root"; var $host_psw = "123"; var $db_name = "test"; var $link_id; var $query_id; var $numRow; function DB(...
一个用Php Class写的发信程序 这个类里显示了发送MIME的方法,也就是HTML格式信件和附件发送的问题。 /* Mail: An object to encapsulate the sending of email. Allows user-specified From: addresses, handles the encoding of attachments; conforms more or less to MIME standards.. Uses sendmail to send the mail, mimencod...