摘要: 左边是mongodb查询语句,右边是sql语句。对照着用,挺方便。 db.users.find() select * from users db.users.find({"age" : 27}) select * from users where age = 27 db.users.find({"u 阅读全文
posted @ 2018-05-25 16:41 raincowl 阅读(193) 评论(0) 推荐(0) 编辑
摘要: <!doctype html> <html> <head> <meta charset="utf-8"> <title>js invoke iframe inner function</title> <style> *{ margin: 0; padding:0;} </style> </head> 阅读全文
posted @ 2018-05-17 14:57 raincowl 阅读(1084) 评论(0) 推荐(0) 编辑
摘要: 在做项目的过程中,后期客户提出了发送邮件的需求,既然客户有需求,那么没啥说的,上呗。 经过网上的一般资料查找,PHPMailer这个插件貌似用起来不错,那就从github clone一份下来,下载链接是PHPMailer。 官当demo如下:当然相关的配置要换成你自己的 首先本地windows下,发 阅读全文
posted @ 2018-04-18 16:18 raincowl 阅读(5543) 评论(3) 推荐(1) 编辑