摘要:
//发送curl请求的函数function curl_request($url, $post = false, $data=array(), $https = false){ //使用curl_init初始化一个curl请求 $ch = curl_init($url); //默认为get请求不需要设 阅读全文
摘要:
//注册 public function register(){ if(IS_POST){ //接收数据 $data = I('post.'); $model = D('User'); $data['username'] = $data['email'] ? $data['email'] : $da 阅读全文
摘要:
JQUERY 常用的几个函数$(selector).hide() 隐藏被选元素 $(selector).show() 显示被选元素 $(selector).toggle() 切换(在隐藏与显示之间)被选元素 $(selector).slideDown() 向下滑动(显示)被选元素 $(selecto 阅读全文
摘要:
<?php namespace Admin\Controller;use Think\Controller;class LoginController extends Controller{ public function login(){ if(IS_POST){ $data = I('post. 阅读全文
摘要:
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, 阅读全文