摘要:
1、问题:如果在远程连接报错:1130-host ... is not allowed to connect to this MySql server,可能是你的帐号不允许从远程登陆,只能在localhost。这个时候只要在localhost的那台电脑,登入mysql后,更改 "mysql" 数据库 阅读全文
摘要:
前言 在php开发中,必不可少要用到文件上传,整理封装了一个图片上传的类也很有必要。 图片上传的流程图 一、控制器调用 public function upload_file() { if (IS_POST) { if (!empty($_FILES['Filedata'])) { import('Org.Upload', COMMON_PA... 阅读全文