php 很久没写了

Connect($DB_HOST,$DB_USER,$DB_PASSWORD,$DB_NAME); // bd if(empty($_POST['submit'])) { //登录表单 echo '

'; echo 'Loading:'; echo '
Username
'; echo '
Password
'; echo ''; echo '
'; } else { //通过接口判断登录帐号的正确性,返回值为数组 list($uid,$username,$code) = uc_user_login($_POST['username'], $_POST['password']); setcookie('Example_auth', '', -3600); if($uid>0) { setcookie('Example_auth', $username); setcookie('Example_code', $code); //第一种 window.open /*echo '';*/ echo ''; //第二种 url click echo '弹出窗口如果被屏蔽,另外打开
'; /* echo ""; */ /* echo ''; */ } echo 'uid '.$uid.'
'; echo 'username '.$username.'
'; echo 'code '.$code.'
'; } ?>

返回参数说明
参数uid 成功:账号id, 失败: -1 不存在的账号 -2密码错误 -3生成验证码失败
参数username 传递账号
参数code 验证码 Server测试验证码 参数code 验证码 client测试验证码

登出'; } echo '    注册'; echo '    登录'; ?>

你可能感兴趣的:(LAMP)