获取URL上的密钥并检查MySQL上的密钥

时间:2019-05-08 11:22:42

标签: php mysql database post get

$id = "1234";
if (isset($_GET['bot_id'])) {
    $_GET['bot_id'];
    if ($_GET['bot_id'] == $id) {
        $_SESSION['bot_id'] = $_GET['bot_id'];
    } else {
        $erro = 'ChatBot not work!';
    }
}
if ($_SESSION['bot_id'] != $id) {

    echo '
    suppor admin website<br />

    <font color="red">' . $thongbao . '</font><br />

    </form>
    ';
    exit;
}

编码我获取网址bot_id 1234
我想获取多个密钥ID 1234、4567和7896,....
请帮助我在mysql或文件文本上获取多个
我的问题是,我有很多客户,我将为客户提供1个可以查看网站的ID,并且我想通过sql或txt文件管理可以添加或删除的ID

0 个答案:

没有答案