...
|
...
|
@@ -154,11 +154,11 @@ class RegisterController extends WebAction |
|
|
*/
|
|
|
public function mobileregisterAction()
|
|
|
{
|
|
|
$mobile = trim($this->post('phoneNum'), ' ');//mobile
|
|
|
$area = intval(trim($this->post('region'), ' '));//area
|
|
|
$mobile = trim($this->post('mobile'), ' ');//mobile
|
|
|
$area = intval(trim($this->post('area'), ' '));//area
|
|
|
$verifyCode = strtolower(trim($this->post('captcha'),' '));//captcha
|
|
|
$code = trim($this->post('msgCaptcha'),'');//code
|
|
|
$password = $this->post('pwd');
|
|
|
$code = trim($this->post('code'),'');//code
|
|
|
$password = $this->post('password');
|
|
|
$url = '/passport/register/index';
|
|
|
$refer = $this->getCookie('refer');
|
|
|
$data = array('code' => 400, 'message' => '', 'data' => '');
|
...
|
...
|
|