xiuno_plugin/z_postEx/unstall.php
2018-11-15 17:39:11 +08:00

16 lines
305 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/*
Xiuno BBS 4.0 插件实例TAG 插件卸载
admin/plugin-unstall-xn_tag.htm
*/
!defined('DEBUG') AND exit('Forbidden');
$tablepre = $db->tablepre;
$sql = "DROP TABLE IF EXISTS {$tablepre}post_reply;";
$r = db_exec($sql);
$r === FALSE AND message(-1, '卸载表失败');
?>