📄 delete_channel.php
字号:
<?php// requirementsrequire('assoc_to_xml.php');require('mysql_conn.php');?><?php$result = array();connect();mysql_query("delete from ref_channels where chid=".$_POST['id']);mysql_query("delete from channels where fk_chid=".$_POST['id']);mysql_query("delete from ref_channel_logos where chid=".$_POST['id']);close();// output$xml = assocToXML($result);// file_put_contents('cl_res_debug.txt', $xml);echo $xml;?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -