quote

所属分类:WEB开发
开发工具:PHP-PERL
文件大小:3042KB
下载次数:1
上传日期:2016-05-13 21:29:08
上 传 者wxdmf
说明:  一个实用于电脑系列产品报价的网站内容管理系统,傻瓜式地安装后,就有了一个类似于中关村 基本特点有: a).安装简便,傻瓜式的安装。 b).有一定的智能化,管理员管理发布信息都极其方便。 c).功能比较强大,该有的功能都有了,且有一些独特实用的功能,没有的功能,只要您提出合理,都会改进,现在还在改进中... d).后台相当完善,决不亚于任一个CMS系统。 e).定制性强,采用模板制,会有大量的theme让你下载使用。 f).执行效率卓越,因为有了smarty技术,可在服务器端生成大量的cache文件,而不必数据库调用频繁。 g).zend 优化。 h).简繁体的自动识别,系统会根据你浏览器的简繁体而自动转换,当然你也可自已选择系统的简繁体显示.
(A practical computer products in the website content management system, the installation of a fool, there is a similar to Zhongguancun Basic features are: A), installation is simple, fool type installation. B), there is a certain intelligent, administrator management information is extremely convenient. C) function is relatively strong, the function has a number of functions, and there are a number of unique and practical features, no function, as long as you put forward reasonable, will be improved, and now is still in improvement... D). The background is quite perfect, no less than any one of the CMS system. E). Custom strong, using the template system, there will be a large number of theme allows you to download the use of. F). Execution efficiency excellence, because with the Smarty technology, can generate a large number of cache files on the server side, and do not have to call the frequently. .zend) g optimization. H) simplified traditional automatic recognition, the s)

文件列表:
quote (0, 2003-12-15)
quote\admin.php (297, 2003-12-15)
quote\backend.php (1909, 2003-12-15)
quote\banners.php (6306, 2003-12-15)
quote\datasetfile.dist.php (747, 2003-11-18)
quote\datasetfile.php (92, 2003-11-18)
quote\edituser.php (10847, 2003-12-15)
quote\greatugv.css (880, 2003-11-18)
quote\header.php (6470, 2003-12-15)
quote\image.php (1704, 2003-12-15)
quote\imagemanager.php (6935, 2003-12-15)
quote\index.php (400, 2003-12-15)
quote\lostpass.php (2287, 2003-12-15)
quote\misc.php (12732, 2003-11-18)
quote\notifications.php (3615, 2003-12-15)
quote\pda.php (949, 2003-12-15)
quote\pmlite.php (3739, 2003-12-15)
quote\readpmsg.php (3030, 2003-12-15)
quote\register.php (7495, 2003-12-15)
quote\robots.txt (251, 2003-11-18)
quote\search.php (8103, 2003-12-15)
quote\user.php (3561, 2003-12-15)
quote\userinfo.php (5155, 2003-12-15)
quote\usersearch.php (5168, 2003-12-15)
quote\viewpmsg.php (2692, 2003-12-15)
quote\xmlrpc.php (1695, 2003-12-15)
quote\redadmin.php (2928, 2003-12-15)
quote\footer.php (2206, 2003-12-15)
quote\ziling_includes (0, 2003-12-15)
quote\ziling_includes\big5.map (48960, 2003-10-17)
quote\ziling_includes\ccharset.php (1979, 2003-12-15)
quote\ziling_includes\gb.map (48960, 2003-10-17)
quote\ziling_includes\readlanguage.php (770, 2003-12-15)
quote\ziling (0, 2003-12-15)
quote\ziling\ccharset.php (1982, 2003-12-15)
quote\ziling\example.php (700, 2003-12-15)
quote\ziling\header.php (6477, 2003-12-15)
quote\ziling\ziling_header.php (928, 2003-12-15)
quote\ziling\ziling_header_ex.php (962, 2003-12-15)
quote\ziling\footer.php (2072, 2003-12-15)
... ...

phpmailer - PHP email class ============================== http://phpmailer.sourceforge.net Please read LICENSE for information on this softwares availability and distribution. Class Features: - Send emails with multiple TOs, CCs, BCCs and REPLY-TOs - Redundant SMTP servers - Multipart/alternative emails for mail clients that do not read HTML email - Support for 8bit, base***, binary, and quoted-printable encoding - Uses the same methods as the very popular AspEmail active server (COM) component - SMTP authentication - Word wrap - Many more... Why you might need it: Many PHP developers utilize email in their code. The only PHP function that supports this is the mail() function. However, it does not expose any of the popular features that many email clients use nowadays like HTML-based emails and attachments. There are two proprietary development tools out there that have all the functionality built into easy to use classes: AspEmail(tm) and AspMail. Both of these programs are COM components only available on Windows. They are also a little pricey for smaller projects. Since I do Linux development I’ve missed these tools for my PHP coding. So I built a version myself that implements the same methods (object calls) that the Windows-based components do. It is open source and the LGPL license allows you to place the class in your proprietary PHP projects. Installation: Copy class.phpmailer.php into your php.ini include_path. If you are using the SMTP mailer then place class.smtp.php in your path as well. Example IsSMTP(); // set mailer to use SMTP $mail->Host = "smtp1.example.com;smtp2.example.com"; // specify main and backup server $mail->SMTPAuth = true // turn on SMTP authentication $mail->Username = "jswan" // SMTP username $mail->Password = "secret" // SMTP password $mail->From = "from@example.com"; $mail->FromName = "Mailer"; $mail->AddAddress("josh@example.net", "Josh Adams"); $mail->AddAddress("ellen@example.com"); // name is optional $mail->AddReplyTo("info@example.com", "Information"); $mail->WordWrap = 50; // set word wrap to 50 characters $mail->AddAttachment("/var/tmp/file.tar.gz"); // add attachments $mail->AddAttachment("/tmp/image.jpg", "new.jpg"); // optional name $mail->IsHTML(true); // set email format to HTML $mail->Subject = "Here is the subject"; $mail->Body = "This is the HTML message body in bold!"; $mail->AltBody = "This is the body in plain text for non-HTML mail clients"; if(!$mail->Send()) { echo "Message could not be sent.

"; echo "Mailer Error: " . $mail->ErrorInfo; exit; } echo "Message has been sent"; ?> CHANGELOG See ChangeLog.txt Download: http://sourceforge.net/project/showfiles.php?group_id=26031 Brent R. Matzelle


近期下载者

相关文件


收藏者