简体   繁体   中英

My session auto destroyed after query from signup table

My user registration table name is "signup". I have many table. But when I query from "signup" table then my session automatically destroyed. But another table has no problem. How can i overcome from this problem? Here is my code

 $id=$_GET['id'];
                     $sql="SELECT * FROM signup WHERE id='$id'";                        
                    $result=mysql_query($sql);
                     $row = mysql_fetch_array($result);
                    if ($row['new_khatian']==1) {$new_khatian="checked";} 
                    echo $new_khatian;

检查一下将session_destroy()函数放在哪里。上面的代码与我认为的会话没有任何关系。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM