Home > Backend Development > PHP Tutorial > The user cannot be altered by a client without the session.

The user cannot be altered by a client without the session.

WBOY
Release: 2016-06-06 20:27:06
Original
860 people have browsed it

public function edit_Q_zhanghaoguanli_info($id){

<code>    if(isset($id) && !empty($id)){
        $qiuzhi = new AVQuery("_User");
        $qiuzhi = $qiuzhi -> get($id);
        $qiuzhi -> set('isTest',true);
        $qiuzhi -> save();
        echo "<script>window.location='/manage/get_Q_zhanghaoguanli_info';</script>";
        return;
    }
}
</code>
Copy after login
Copy after login

求救 这样写有错吗????

回复内容:

public function edit_Q_zhanghaoguanli_info($id){

<code>    if(isset($id) && !empty($id)){
        $qiuzhi = new AVQuery("_User");
        $qiuzhi = $qiuzhi -> get($id);
        $qiuzhi -> set('isTest',true);
        $qiuzhi -> save();
        echo "<script>window.location='/manage/get_Q_zhanghaoguanli_info';</script>";
        return;
    }
}
</code>
Copy after login
Copy after login

求救 这样写有错吗????

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template