$intPage = intval($_GET['page']); } $strWhere = implode(' AND ', $arrWhere); $strWhere = 'where ' . $strWhere; if ($_SERVER["REQUEST_METHOD"] == "POST") { if (empty($_POST['title'])) { check::AlertExit("请填写手机!", -1); } if (empty($_POST['yzm'])) { check::AlertExit("请填写验证码!", -1); } if (!check::CheckMobilePhone($_POST['title'])) { check::AlertExit("请填写正确的手机号码!", -1); } if ($_POST['mobilecode'] != $_POST['yzm']) { check::AlertExit("验证码输入错误!", -1); } else { $arrTemp = $objWebInit->getInfoWhere("where title='{$_POST['title']}'"); if (!empty($arrTemp)) { check::AlertExit("该手机已经订阅了!", -1); } else { unset($_POST['button']); unset($_POST['button2']); unset($_POST['yzm']); unset($_POST['mobilecode']); $objWebInit->saveInfo($_POST, 0); } } } $arrMOutput["smarty_assign"]['MAIN'] = $arrGSmarty['main_dir'] . 'book.html'; $objWebInit->output($arrMOutput);