终于实现淘宝用户直接登录ec的功能了

2016-07-07 15:01 来源:www.chinab4c.com 作者:ecshop专家

  1. if($_SESSION['taobao_nick']!==""){
  2. $username=$nick;
  3. $password=time();
  4. $email=$username.'@youchakutaobao.com';//返回邮箱 所以随便弄个 其他的可以根据返回情况而定
  5. $back_act ="/index.html";
  6. if (check_user($username,$email)!==false){
  7. $GLOBALS['user']->set_session($username);
  8. $GLOBALS['user']->set_cookie($username);
  9. header("Location: /index.html\n");
  10. exit;
  11. }else{
  12. $reg_date = time();
  13. $password =md5($password);
  14. $ip=real_ip();
  15. $GLOBALS['db']->query('INSERT INTO ' . $GLOBALS['ecs']->table("users") . "(`email`, `user_name`, `password`, `reg_time`, `last_login`, `last_ip`) VALUES ('$email', '$username', '$password', '$reg_date', '$reg_date', '$ip')");
  16. $GLOBALS['user']->set_session($username);
  17. $GLOBALS['user']->set_cookie($username);
  18. header("Location: /user.html\n");
  19. exit;
  20. }
  21. }else{
  22. echo 'fail';
  23. exit;
  24. }
复制代码
参考,优茶库网站:http://www.youchaku.com

回答:
切,别看像就是你的。。我这是从实现支付宝代码,自己改过来的。。

支持楼主!



我自己写的代码我还不清楚吗?
麻烦你看看此贴:http://bbs.ecshop.com/thread-124280-1-1.html

恭喜了,不错的功能

进来学习一下




那只能说刚好碰到别人用你的,而我参考了别人的check_user。。并不是我没留版权的问题。。。。。