摘要:
之前尝试了一些,利用php自带的mail()函数,在本地主机上测试时总是提示错误,Warning: mail() [function.mail]: SMTP server response: 553 You are not authorized to send mail貌似是因为没有设置密码的关系,但我真知道在哪里设置了,后来在网上搜了下,发现一个现成的类,用起来还是挺方便的Class.smtp.php<?php// #########################################$smtpserver = "localhost"; //SMTP服务 阅读全文
摘要:
数据库自动创建完全可以模仿wordpress来写我们的config.php文件,将数据库、主机、账号、密码定义成常量,比如数据库常量定义 1 // ** MySQL settings - You can get this info from your web host ** // 2 /** The name of the database for WordPress */ 3 define('DB_NAME', 'contact'); 4 5 /** MySQL database username */ 6 define('DB_USER', 阅读全文