if(isset(_GET['act']) && _GET['act']=='isshow') 这句话是什么含义拜托//审核 if(isset($_GET['act']) && $_GET['act']=='isshow') { $sql="update guestbook set isshow='".$_GET['isshow']."' where id=$id"; mysql_quer

来源:学生作业帮助网 编辑:作业帮 时间:2024/04/29 04:24:25
if(isset(_GET['act']) && _GET['act']=='isshow') 这句话是什么含义拜托//审核 if(isset($_GET['act']) && $_GET['act']=='isshow') { $sql=

if(isset(_GET['act']) && _GET['act']=='isshow') 这句话是什么含义拜托//审核 if(isset($_GET['act']) && $_GET['act']=='isshow') { $sql="update guestbook set isshow='".$_GET['isshow']."' where id=$id"; mysql_quer
if(isset(_GET['act']) && _GET['act']=='isshow') 这句话是什么含义拜托
//审核 if(isset($_GET['act']) && $_GET['act']=='isshow') { $sql="update guestbook set isshow='".$_GET['isshow']."' where id=$id"; mysql_query($sql); die(" window.alert('审核成功!');window.document.location.href='index.php'; ");

if(isset(_GET['act']) && _GET['act']=='isshow') 这句话是什么含义拜托//审核 if(isset($_GET['act']) && $_GET['act']=='isshow') { $sql="update guestbook set isshow='".$_GET['isshow']."' where id=$id"; mysql_quer
当$_GET 存在动作,而且动作是 isshow 的时候执行后面代码.